import { Style } from 'inlines'; type SwitchInputProps = { value?: boolean; onChange: (value: boolean) => void; disabled?: boolean; description?: string; state?: string; label?: string; style?: Style; }; declare const SwitchInput: ({ value, onChange, disabled, label, description, state, style, }: SwitchInputProps) => import("react/jsx-runtime").JSX.Element; export type { SwitchInputProps }; export { SwitchInput };