import { type NormalizedCliOptions } from './normalize';
import type { Schema } from '../../types/schema';
export declare const flattenedSchema: Record<string, Schema>;
export declare const options: {
    [k: string]: {
        type: 'boolean' | 'string';
        multiple: boolean;
        short?: string;
        default?: boolean | string | string[];
        hint?: string;
        description: string;
    };
};
export type ParseArgsOptions = typeof options;
export declare function parseCliArguments(): NormalizedCliOptions;
