/// /** * ✔ checked * ✔ type * ✔ disabled * ✔ color */ import { Switch, SwitchProps, ViewStyle, NativeSyntheticEvent } from 'react-native'; import { HandlerRef } from './useNodesRef'; interface _SwitchProps extends SwitchProps { style?: ViewStyle; name?: string; checked?: boolean; type: 'switch' | 'checkbox'; disabled: boolean; color: string; 'enable-var'?: boolean; 'parent-font-size'?: number; 'parent-width'?: number; 'parent-height'?: number; 'external-var-context'?: Record; bindchange?: (event: NativeSyntheticEvent | unknown) => void; catchchange?: (event: NativeSyntheticEvent | unknown) => void; } declare const _Switch: import("react").ForwardRefExoticComponent<_SwitchProps & import("react").RefAttributes>>; export default _Switch;