import * as RadixSwitch from "@radix-ui/react-switch"; import { SwitchFieldIndicator, type SwitchFieldIndicatorSize, type SwitchFieldIndicatorVariant } from "./SwitchFieldIndicator"; export type SwitchFieldProps = Readonly<{ label: React.ReactNode; tooltip?: React.ReactNode; isTooltipDisabled?: boolean; description?: string; inverted?: boolean; indeterminate?: boolean; defaultIndeterminate?: boolean; onIndeterminateChange?: (indeterminate: boolean) => void; variant?: SwitchFieldIndicatorVariant; size?: SwitchFieldIndicatorSize; className?: string; }> & RadixSwitch.SwitchProps; export declare function SwitchField({ label, description, tooltip, isTooltipDisabled, className, inverted, indeterminate, defaultIndeterminate, onIndeterminateChange, variant, size, ...rest }: SwitchFieldProps): import("react").JSX.Element; export declare namespace SwitchField { export { SwitchFieldIndicator as Indicator }; } //# sourceMappingURL=SwitchField.d.ts.map