import { SwitchProps } from 'antd'; import { PropsTypes } from '@orca-fe/deye-typings'; import { TitleContentPropsOnly } from '../title-content'; export interface ASwitchProps extends TitleContentPropsOnly, SwitchProps { } declare const ASwitch: { (props: ASwitchProps): JSX.Element; code: string; title: string; style: boolean; propsDef: PropsTypes[]; }; export default ASwitch;