type OptionItem = {
    label: string;
    value: string;
    icon?: any;
    img?: string;
    activedImg?: string;
};
export type ConfigProps = {
    label: string;
    key: string;
    border: boolean;
    options: OptionItem[];
    showRadioButton: boolean;
};
export {};
