import * as React from 'react'; import * as Switch from '@radix-ui/react-switch'; interface SwitchProps extends Omit { onLabel?: string; offLabel?: string; visibleLabels?: boolean; } declare const SwitchImpl: React.ForwardRefExoticComponent>; export { SwitchImpl as Switch }; export type { SwitchProps }; //# sourceMappingURL=Switch.d.ts.map