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