export declare const preview: (command: any) => { command: any; strict: any; title: string; header: string; example: string; detailedExample: { command: string; docs: string; }; oneof: { name: string; docs: string; file: boolean; }[]; optional: ({ name: string; boolean: boolean; docs: string; alias?: undefined; narg?: undefined; } | { name: string; alias: string; boolean: boolean; docs: string; narg?: undefined; } | { name: string; alias: string; docs: string; narg: number; boolean?: undefined; })[]; parents: (string | { command: string; })[]; related: string[]; }; export declare const source: (command: any) => { command: any; strict: any; title: string; header: string; example: string; detailedExample: { command: string; docs: string; }; required: { name: string; docs: string; file: boolean; }[]; parents: (string | { command: string; })[]; related: string[]; };