export declare const axiosInstance: import("axios").AxiosInstance; interface TpageInfo { size: number; total: number; current: number; page?: number; } export interface TResult { status: 0 | 1; msg?: string; pageInfo?: TpageInfo; data?: any; } declare const getPage: (data: any) => Promise; declare const getInfo: (id: any) => Promise; export { getPage, getInfo };