export interface InitOptions {
    profile?: 'auto' | 'react' | 'next' | 'python';
    interactive?: boolean;
}
export declare function initializeConfig(options: InitOptions): Promise<void>;
