import { default as React } from 'react'; import * as SwitchUi from '@radix-ui/react-switch'; export type ThemeType = 'primary' | 'secondary'; export type ViewType = 'default' | 'alternative'; export declare function getSwitchClassNames(classNameRoot?: string, theme?: ThemeType, view?: ViewType): string; export declare function getSwitchThumbClassNames(classNameThumb?: string, theme?: ThemeType, view?: ViewType): string; export interface SwitchProps extends SwitchUi.SwitchProps { classNameRoot?: string; classNameThumb?: string; theme?: ThemeType; view?: ViewType; } declare const _default: React.NamedExoticComponent; export default _default;