import React from 'react'; import './index.less'; import { BaseResponsiveProps } from '../../../responsive/type'; interface AddClientProps extends BaseResponsiveProps { onChange: (value: any, isChecked: boolean) => void; phone?: string; containerProps: { className?: string; title?: string; open?: boolean; onCancel?: () => void; width?: string | number; } & Record; } export interface AddClientRef { reset: () => void; } declare const _default: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export default _default;