import 'reflect-metadata'; import { ICommandArgumentName, ICommandArgumentQuestionParams, ICommandArgumentValidator, ICommandArgumentValidtatorParams } from '../commandArgument.decorator'; export declare function CommandStorageArgument(nameOrOptions: ICommandArgumentName | { name: ICommandArgumentName; question?: (data: ICommandArgumentQuestionParams) => Promise; askAgain?: boolean; isOptional?: boolean | ((data: ICommandArgumentValidtatorParams) => boolean); }, ...validators: ICommandArgumentValidator[]): Function;