import type { ReadBlueprintResult } from '../../actions/blueprints/blueprint.js';
import type { CoreConfig, CoreResult } from '../index.js';
export interface BlueprintConfigOptions extends CoreConfig {
    token: string;
    blueprint: ReadBlueprintResult;
    flags: {
        edit?: boolean;
        'project-id'?: string;
        'organization-id'?: string;
        'stack-id'?: string;
        verbose?: boolean;
    };
}
export declare function blueprintConfigCore(options: BlueprintConfigOptions): Promise<CoreResult>;
