import * as React from 'react'; interface ToggleProps { /** * The label for the toggle */ label?: string; /** * Whether the toggle is on */ checked?: boolean; /** * Callback when toggle state changes */ onChange?: (checked: boolean) => void; /** * Whether the toggle is disabled */ disabled?: boolean; /** * Custom className */ className?: string; /** * Custom style */ style?: React.CSSProperties; /** * Test ID for testing */ 'data-testid'?: string; /** * Name attribute for form submission */ name?: string; /** * Value attribute for form submission */ value?: string; } /** * Toggle component - Arbor Design System * * A toggle switch input with label support. */ declare const Toggle: React.ForwardRefExoticComponent>; export { Toggle, type ToggleProps };