import { BoxProps } from '@dodoex/components'; /** * Text type Switch button: supports On and Off states * @param param0 * @returns */ export declare function TextSwitch({ checked, onChange, sx, disabled, }: { sx?: BoxProps['sx']; checked: boolean; onChange: (v: boolean) => void; disabled?: boolean; }): import("react").JSX.Element;