export interface SwitchItem {
    id: number;
    icon: string;
    title: string;
    checked: boolean;
    isAnysc?: boolean;
    confirmDialogOption?: {
        title?: string;
        message?: string[];
    };
}
export interface SwitchList {
    label?: string;
    options?: SwitchItem[];
}
