interface CommandLineArguments { configFile?: string; format: boolean; help: boolean; files: string[]; includePaths: string[]; } type ParsedCommandLineArguments = { success: false; message: string; } | { success: true; arguments: CommandLineArguments; }; export declare function parseCommandLineArguments(args: string[]): ParsedCommandLineArguments; export {};