type Choice<Value> = {
    checked?: boolean;
    description?: string;
    disabled?: boolean | string;
    name?: string;
    short?: string;
    value: Value;
};
export declare function promptImplicitCheckbox<Value>(config: {
    choices: readonly Choice<Value>[];
    message: string;
}): Promise<Value[]>;
export {};
//# sourceMappingURL=implicit-checkbox.d.ts.map