import React from 'react'; import './index.less'; interface AddClientProps { onChange: (value: any) => void; phone: string; } declare const AddClient: (props: AddClientProps) => React.JSX.Element; export default AddClient;