import React from 'react'; import { CascaderProps, FormItemProps, InputProps } from 'antd'; import { BizFormItemProps } from './Item'; export interface BizFormItemAddressProps extends Omit, Pick { names: [FormItemProps['name'], FormItemProps['name']]; labels?: [string, string]; formItemProps?: [BizFormItemProps, BizFormItemProps]; inputProps?: InputProps; cascaderProps?: CascaderProps; } declare const BizFormItemAddress: React.FC; export default BizFormItemAddress;