import { Category } from '@usercentrics/cmp-browser-sdk'; import { SwitchProps } from '../Switch'; declare type Props = { data: Category; checked: boolean; onMoreInfo: VoidFunction; onChange: SwitchProps['onChange']; }; export declare const SettingItem: ({ data, checked, onChange, onMoreInfo }: Props) => JSX.Element | null; export {};