/// import CSS from 'csstype'; declare function Switch({ text, onSwitch, isSwitched, style, fontSize, padding, margin, borderRadius, textStyle, backgroundColor, userSelect, textMargin, textPadding, switchMargin }: { text: string; onSwitch: () => void; isSwitched: boolean; style?: CSS.Properties; fontSize?: string; textStyle?: CSS.Properties; padding?: string; margin?: string; textMargin?: string; textPadding?: string; switchMargin?: string; borderRadius?: string; backgroundColor?: string; userSelect?: boolean; }): JSX.Element; export default Switch;