export interface ParsedCLIArgs {
    command: string;
    subcommand?: string;
    config: string;
    options: Record<string, any>;
}
export declare class CLIParser {
    /**
     * Parse command line arguments
     */
    parse(args: string[]): ParsedCLIArgs;
    /**
     * Check if help is requested
     */
    isHelpRequested(args: string[]): boolean;
    /**
     * Check if version is requested
     */
    isVersionRequested(args: string[]): boolean;
}
//# sourceMappingURL=CLIParser.d.ts.map