import { type TreeNode } from '../utils/layout';
/** Create settings schema and local mocked values. */
export declare function generateSettingsSchema(options: {
    /** The name of the settings schema. */
    name: string;
    /** Specifies in which folder a settings schema should be generated in */
    settingsDir: string;
    /** Has the current working directory */
    cwd: string;
    /** Whether to write to the filesystem or not */
    dryRun?: boolean;
}): Promise<TreeNode | null>;
