import { Toggle as TogglePrimitive } from '@base-ui/react/toggle'; import { VariantProps } from 'class-variance-authority'; import { ClassProp } from 'class-variance-authority/types'; declare const toggleVariants: (props?: ({ variant?: "default" | "outline" | null | undefined; size?: "default" | "sm" | "lg" | null | undefined; } & ClassProp) | undefined) => string; declare function Toggle({ className, variant, size, ...props }: TogglePrimitive.Props & VariantProps): import("react/jsx-runtime").JSX.Element; export { Toggle, toggleVariants };