export type SwitchOptionProps = { checked?: boolean; complex?: boolean; content?: React.ReactNode; disabled?: boolean; showMediaCircle?: boolean; showMediaAtAllSizes?: boolean; isContainerAligned?: boolean; id?: string; media?: React.ReactNode; onChange: (newValue: boolean) => void; title: React.ReactNode; 'aria-label': string; }; /** * @deprecated Use `` instead (run codemod to migrate: **`npx @wise/wds-codemods@latest list-item`**). * @deprecatedSince 46.104.0 * @see [Source](../listItem/ListItem.tsx) * @see [Storybook](https://storybook.wise.design/?path=/docs/content-listitem--docs) * @see [Design docs](https://wise.design/components/list-item) * @see [Release notes](https://transferwise.atlassian.net/wiki/spaces/DS/pages/3647251055/List+Item+release+notes) */ declare const SwitchOption: ({ checked, complex, content, disabled, id, media, onChange, title, showMediaCircle, showMediaAtAllSizes, isContainerAligned, "aria-label": ariaLabel, }: SwitchOptionProps) => import("react").JSX.Element; export default SwitchOption; //# sourceMappingURL=SwitchOption.d.ts.map