import React from 'react'; export type SwitchProps = { onChange: (nextValue: boolean) => void; value: boolean; disabled?: boolean; testID?: string; }; declare const Switch: { ({ onChange, testID, value, disabled }: SwitchProps): React.JSX.Element; displayName: string; }; export default Switch;