export declare const create: (command: any) => { strict: any; command: any; title: string; header: any; example: string; required: ({ name: string; docs: string; implicitOK: string[]; file?: undefined; notNeededIfImplicit?: undefined; } | { name: string; docs: string; file: boolean; notNeededIfImplicit: boolean; implicitOK?: undefined; })[]; optional: any; sampleInputs: { name: string; docs: string; command: string; partial: boolean; }[]; parents: (string | { command: string; })[]; related: string[]; }; export declare const invoke: { command: string; strict: string; title: string; header: string; example: string; required: { name: string; docs: string; entity: string; implicitOK: string[]; }[]; optional: any[]; parents: (string | { command: string; })[]; related: string[]; }; export declare const async: { strict: string; title: string; header: string; example: string; required: { name: string; docs: string; }[]; optional: any[]; related: string[]; }; export declare const appGet: (command: any) => { strict: any; command: any; title: string; header: string; example: string; required: { name: string; docs: string; entity: string; }[]; optional: ({ name: string; boolean: boolean; docs: string; alias?: undefined; } | { name: string; alias: string; boolean: boolean; docs: string; })[]; parents: (string | { command: string; })[]; related: string[]; }; export declare const appList: (command: any) => { strict: any; command: any; title: string; header: string; example: string; optional: { name: string; positional: boolean; entity: string; docs: string; }[]; parents: (string | { command: string; })[]; related: string[]; }; export declare const sessionGet: (command: any) => { strict: any; command: any; title: string; header: any; example: string; oneof: ({ name: string; docs: string; example?: undefined; booleanOK?: undefined; } | { name: string; example: string; booleanOK: boolean; docs: string; })[]; optional: ({ name: string; positional: boolean; docs: string; alias?: undefined; } | { name: string; docs: string; positional?: undefined; alias?: undefined; } | { name: string; alias: string; docs: string; positional?: undefined; })[]; parents: (string | { command: string; })[]; related: any; }; export declare const sessionList: { title: string; header: string; example: string; optional: ({ name: string; docs: string; numeric?: undefined; } | { name: string; numeric: boolean; docs: string; })[]; parents: (string | { command: string; })[]; related: string[]; }; export declare const appDelete: { command: string; docs: string; strict: string; example: string; required: { name: string; docs: string; entity: string; }[]; parents: (string | { command: string; })[]; }; export declare const properties: (cmd: any) => { title: string; header: string; example: string; };