export interface ChooseAddressInfo { id: number; userId: string; userName: string; phone: string; adcode: string; provinceName: string; cityName: string; countyName: string; address: string; tag: string; isDefault: boolean; } interface ParamsType { type: 'auto' | 'add' | 'choose'; business: 'trial'; env?: 'alpha' | 'rc' | 'prod'; id?: number; } export declare function getDefaultAddress(params?: { env?: ParamsType['env']; }): Promise; export default function (params: ParamsType): Promise; export {};