import { BaseSetting } from "./BaseSetting";
import { SettingFunc } from "../types";
declare type DefaultType = boolean;
export interface BooleanSetting extends BaseSetting<DefaultType> {
}
export declare function makeBoolean(name: string, label: string, def: DefaultType, data?: {
    required?: boolean;
}): SettingFunc;
export {};
