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