export type ConfigProps = {
    label: string;
    placeholder?: string;
    key: string;
    disabled?: boolean;
    clearable?: boolean;
    maxLength?: number;
    minLength?: number;
};
