import React from 'react'; export type SwitchSize = 'sm' | 'md' | 'lg'; export type SwitchProps = Omit, 'type' | 'size' | 'className' | 'style'> & { label: string; hideLabel?: boolean; size?: SwitchSize; className?: string; style?: React.CSSProperties; }; type SwitchComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const Switch: SwitchComponent; export default Switch; //# sourceMappingURL=index.d.ts.map