export interface ParseOptions { output?: string; markdown?: boolean; json?: boolean; debug?: boolean; property?: string; } export declare function handleParseCommand(source: string, options: ParseOptions): Promise;