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