export type ConfigProps = {
    label: string;
    key: string;
    min?: number;
    max?: number;
    step?: number;
    precision?: number;
};
