import React from 'react'; import { SwitchProps, ViewStyle } from 'react-native'; import { ThemeName } from '../constants/Colors'; export type Props = SwitchProps & { themeScheme?: "light" | "dark"; variant?: "default" | ThemeName; size?: "small" | "medium" | "large"; isChecked: boolean; onValueChange: (value: boolean) => void; viewStyle?: ViewStyle; switchStyle?: { isChecked: string; unChecked: string; thumbColor: string; borderColor: string; } | undefined; }; declare const Switch: ({ isChecked, variant, viewStyle, size, switchStyle, onValueChange, themeScheme, style, ...props }: Props) => React.JSX.Element; export default Switch; //# sourceMappingURL=Switch.d.ts.map