type OptionItem = {
    label: string;
    value: string;
};
export type ConfigProps = {
    label: string;
    key: string;
    options: OptionItem[];
    placeholder?: string;
};
export {};
