import { VariantProps } from 'class-variance-authority'; declare const toggleTrack: (props?: ({ variant?: "default" | "muted" | null | undefined; size?: "sm" | "md" | "lg" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export type ToggleProps = VariantProps & { checked?: boolean; defaultChecked?: boolean; disabled?: boolean; readonly?: boolean; onChange?: (checked: boolean) => void; className?: string; children?: React.ReactNode; /** Accessible name for the switch. Required when no visible text label is provided. */ 'aria-label'?: string; [key: string]: unknown; }; export declare const Toggle: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export {};