import { errorMessageTemplate } from '../helpers';
declare const cliPromptOptions: ({
    description: string;
    name: string;
    required: boolean;
    hidden: boolean;
    pattern?: undefined;
} | {
    description: string;
    name: string;
    pattern: RegExp;
    required: boolean;
    hidden?: undefined;
})[];
declare const cliOptions: {
    boolean: string[];
    string: string[];
};
declare const cliMessages: {
    welcome: string;
    help: string;
    configureSuccess: string;
    invalidProjectId: string;
    notConfigured: string;
    deploying: string;
    configDisplay: (projecId: string) => string;
    deploymentError: (tokenName: string, account: string, error: string) => string;
    deploymentSuccess: (tokenName: string, account: string, contractAddress: string) => string;
};
export { cliPromptOptions, cliOptions, cliMessages, errorMessageTemplate };
