import { ChangeEvent, ReactElement } from "react"; import { VibeComponent, VibeComponentProps } from "../../types"; import { MockToggleProps } from "../Toggle/MockToggle"; export interface SwitchProps extends VibeComponentProps { name?: string; value?: string; role?: string; disabled?: boolean; ariaLabel?: string; ariaLabelledBy?: string; checked?: boolean; inputClassName?: string; onChange?: (value: boolean, event: ChangeEvent) => void; ariaControls?: string; defaultChecked?: boolean; children?: ReactElement; wrapperClassName?: string; } export declare const Switch: VibeComponent;