/// declare type value = { id: string; img: string; name: string; }; declare type RadioSwitcherT = { id: string; parentKeySection?: any; values: value[]; }; export declare const RadioSwitcher: ({ ...props }: RadioSwitcherT) => JSX.Element; export {};