type OptionItem = {
    label: string;
    value: string;
};
export type ConfigProps = {
    label: string;
    key: string;
    min?: number;
    max?: number;
    step?: number;
    precision?: number;
    options: OptionItem[];
    placeholder?: string;
    unit: string;
};
export {};
