import { InputProps } from '../Input'; export interface SwitchProps extends InputProps { activatedColor?: string; activatedColorDark?: string; checked: boolean; deactivatedColor?: string; deactivatedColorDark?: string; disabled?: boolean; disabledColor?: string; disabledColorDark?: string; id?: string; loadingColor?: string; name?: string; onToggle: (isChecked: boolean) => void; showLoading?: boolean; dataUieName?: string; } export declare const Switch: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; //# sourceMappingURL=Switch.d.ts.map