interface DataOption {
id: string;
name: string;
}
interface DataOptionCheckBox {
label: string;
value: string;
export type { DataOption, DataOptionCheckBox };