export interface SwitchProps { checked: boolean; onChange: (value: boolean, event: any) => void; checkedText: string; unCheckedText: string; width?: number; [props: string]: any; } export declare const Switch: ({ checked, onChange, checkedText, unCheckedText, width, ...props }: SwitchProps) => import("@emotion/react/jsx-runtime").JSX.Element;