import type { ViewStyle } from 'react-native'; interface ToggleProps { checked?: boolean; label?: string; disabled?: boolean; style?: ViewStyle; _tokens?: Record; onChange?: (checked: boolean) => void; testID?: string; } export declare function Toggle({ checked, label, disabled, style, _tokens, onChange, testID }: ToggleProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=toggle.d.ts.map