import { Toggle as TogglePrimitive } from '@base-ui/react/toggle'; import { ToggleGroup as ToggleGroupPrimitive } from '@base-ui/react/toggle-group'; import { type VariantProps } from 'class-variance-authority'; declare const toggleVariants: (props?: ({ size?: 1 | 2 | 3 | 4 | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface ToggleProps extends TogglePrimitive.Props, VariantProps { size?: 1 | 2 | 3 | 4; } declare function ToggleRoot({ className, children, size, ...props }: ToggleProps): import("react/jsx-runtime").JSX.Element; declare namespace ToggleRoot { var displayName: string; } declare function ToggleGroup({ className, ...props }: ToggleGroupPrimitive.Props): import("react/jsx-runtime").JSX.Element; declare namespace ToggleGroup { var displayName: string; } export declare const Toggle: typeof ToggleRoot & { Group: typeof ToggleGroup; }; export {}; //# sourceMappingURL=toggle.d.ts.map