type UnitOptions = {
    label: string;
    value: string;
};
export type ConfigProps = {
    label: string;
    min?: number;
    max?: number;
    step?: number;
    key: string;
    isShowUnitSelect?: boolean;
    unitSelectOptions?: UnitOptions[];
    precision?: number;
    disabled?: boolean;
    controls?: boolean;
};
export {};
