import ChoiceBuilder from './choice-builder';
/**
 * Where a {@link ChoiceBuilder} is required for a parameter but we already have a prebuild choice this class should be
 * used.
 *
 * @author Stu
 */
export default class DefinedCB extends ChoiceBuilder {
    choice: any;
    constructor(choice: any);
    build(): any;
}
