import { Environment, IProjectDbms, PUBLIC_GRAPHQL_METHODS, DBMS_STATUS, ENTITY_TYPES, SystemProvider } from '@relate/common'; interface IChoice { name: string; message?: string; value?: string; hint?: string; disabled?: boolean | string; } export declare const selectPrompt: (message: string, choices: string[] | IChoice[]) => Promise; export declare const selectEntityPrompt: (message: string, environment: Environment, entityType: ENTITY_TYPES) => Promise; export declare const confirmPrompt: (message: string) => Promise; export declare const selectMultiplePrompt: (message: string, choices: string[] | IChoice[]) => Promise; export declare const selectEnvironmentPrompt: (message: string, systemProvider: SystemProvider) => Promise; export declare const selectDbmsPrompt: (message: string, environment: Environment, filter?: DBMS_STATUS) => Promise; export declare const selectDbmssPrompt: (message: string, environment: Environment, filter?: DBMS_STATUS) => Promise; export declare const selectProjectPrompt: (message: string, environment: Environment) => Promise; export declare const selectProjectDbmsPrompt: (message: string, projectDbmss: IProjectDbms[]) => Promise; export declare const selectAllowedMethodsPrompt: () => Promise; export {};