export type ConfigProps = {
    label: string;
    min?: number;
    max?: number;
    key: string;
    key1: string;
    key2: string;
    step?: number;
    precision?: number;
    showBorderColor: boolean;
    showBorderStyle: boolean;
    showBorderWidth: boolean;
};
