import React from 'react'; import { NativeAttributes } from '../Box'; export declare type SwitchProps = NativeAttributes<'input'> & { /** Whether the checkbox is currently disabled */ disabled?: boolean; /** Whether the input has an invalid value or not */ invalid?: boolean; /** The label associated with the Switch. Appears on the right. */ label?: string; /** The text to show when the switch is checked */ checkedText?: string; /** The text to show when the switch is unchecked */ uncheckedText?: string; }; declare const _default: React.MemoExoticComponent & React.RefAttributes>>; export default _default;