import * as RadixSwitch from "@radix-ui/react-switch"; export type SwitchGroupItemProps = Readonly<{ label: React.ReactNode; description?: React.ReactNode; indeterminate?: boolean; defaultIndeterminate?: boolean; onIndeterminateChange?: (indeterminate: boolean) => void; className?: string; }> & RadixSwitch.SwitchProps; export declare const SwitchGroupItem: ({ label, description, indeterminate, defaultIndeterminate, onIndeterminateChange, className, ...rest }: SwitchGroupItemProps) => import("react").JSX.Element; //# sourceMappingURL=SwitchGroupItem.d.ts.map