import { default as React } from 'react';
export interface SwitchProps {
    checked: boolean;
    onChange: (checked: boolean) => void;
    disabled?: boolean;
    /** Nombre accesible del switch (recomendado si no hay label visible asociado). */
    'aria-label'?: string;
}
export declare const Switch: React.FC<SwitchProps>;
export default Switch;
