import * as RadixSwitch from "@radix-ui/react-switch"; export type SwitchFieldIndicatorVariant = "default" | "primary"; export type SwitchFieldIndicatorSize = "medium" | "small"; export type SwitchFieldIndicatorProps = RadixSwitch.SwitchProps & Readonly<{ indeterminate?: boolean; defaultIndeterminate?: boolean; onIndeterminateChange?: (indeterminate: boolean) => void; variant?: SwitchFieldIndicatorVariant; size?: SwitchFieldIndicatorSize; }>; export declare const SwitchFieldIndicator: ({ indeterminate: indeterminateProp, defaultIndeterminate, onIndeterminateChange, onCheckedChange, variant, size, ...props }: SwitchFieldIndicatorProps) => import("react").JSX.Element; //# sourceMappingURL=SwitchFieldIndicator.d.ts.map