import React from "react"; import { type SwitchChangeEventHandler, type SwitchClickEventHandler } from "rc-switch"; export interface SwitchProps extends Omit, "onChange" | "onClick" | "dangerouslySetInnerHTML"> { className?: string; disabled?: boolean; checkedChildren?: React.ReactNode; unCheckedChildren?: React.ReactNode; onChange?: SwitchChangeEventHandler; onKeyDown?: React.KeyboardEventHandler; onClick?: SwitchClickEventHandler; tabIndex?: number; checked?: boolean; defaultChecked?: boolean; loadingIcon?: React.ReactNode; style?: React.CSSProperties; title?: string; } export declare const Switch: React.ForwardRefExoticComponent>; //# sourceMappingURL=switch.d.ts.map