export declare const Server: { get: (url: string, isAuth?: boolean, customOptions?: any, customHeader?: any) => Promise; getWithToken: (url: string, token: string, customOptions?: any, customHeader?: any) => Promise; post: (url: string, payload: any, isAuth: boolean, customOptions?: any, customHeader?: any) => Promise<{}>; put: (url: string, id: string, payload: any, isAuth: boolean, customOptions?: any, customHeader?: any) => Promise<{}>; redirectPost: (url: string, data: any) => void; }; export default Server;