import { ConfigOptions } from '../config/config';
/**
 * @internal
 */
export declare enum STATUS {
    FILE_EXISTS = "file_exists",
    FILE_CREATED = "file_created"
}
/**
 * @internal
 */
export declare function ensureSettingsFile(options?: ConfigOptions): Promise<{
    status: STATUS;
    path: string;
    content: string;
}>;
