import React, { ReactNode } from "react"; export interface SwitchProps { className?: string; name: string; value: string; checked?: boolean; defaultChecked?: boolean; disabled?: boolean; rootClassName: string; thumbClassName: string; onFocus?(): void; onBlur?(): void; onChange?(value: boolean): void; children: ReactNode; "aria-label"?: string; "aria-labelledby"?: string; } export declare function Switch({ className, name, value, checked, defaultChecked, disabled, rootClassName, thumbClassName, onFocus, onBlur, onChange, children, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, }: SwitchProps): React.JSX.Element;