export declare const promptInteger: (text: string) => Promise; export declare const promptAuthority: (text?: string) => Promise<{ actor: string; permission: string; }>; export declare const promptName: (text: string, opts?: { default?: string | undefined; validate?: ((input: string) => boolean | string | Promise) | undefined; }) => Promise; export declare const promptKey: () => Promise; export declare const promptChoices: (message: string, choices: string[], def?: string) => Promise;