import React from 'react'; import { ViewStyle } from 'react-native'; export type SwitchSize = 'small' | 'medium' | 'large' | number; export type SwitchColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info' | string; export interface SwitchProps { value: boolean; onValueChange: (value: boolean) => void; disabled?: boolean; size?: SwitchSize; color?: SwitchColor; style?: ViewStyle | ViewStyle[]; testID?: string; } declare const Switch: React.FC; export default Switch; //# sourceMappingURL=Switch.d.ts.map