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