import type { FC } from 'react';
interface AddressProps {
    fieldAttr?: string[];
    /**
     * 地址类型
     */
    areaType?: string;
    value?: any;
    placeholder?: string;
    disabled?: boolean;
    onChange?: (value: any) => void;
    getEngineApis?: any;
    $$componentItem?: any;
}
declare const AddressPC: FC<AddressProps>;
export default AddressPC;
