import * as RadixSwitch from '@radix-ui/react-switch'; import type { ComponentPropsWithoutRef } from 'react'; export interface SwitchProps extends Omit, 'children'> { label: string; className?: string; warning?: boolean; } export declare const Switch: import("react").ForwardRefExoticComponent>;