import * as React from 'react'; import { Merge } from 'type-fest'; export declare type SwitchProps = Merge, { css?: any; /** CSS class name */ className?: string; /** Sets the checked state of Switch */ checked?: boolean; }>; declare const Switch: React.FC; export { Switch };