import type { ViewProps } from 'react-native'; declare type UseSwitch = Omit & { accessibilityLabel: string; }; declare type UseSwitchReturn = Omit & { accessibilityLabel: string; accessibilityRole: 'switch'; }; export declare const useSwitch: (props: UseSwitch) => UseSwitchReturn; export {};