export declare const CSRF: { isEnabled: boolean; token: string; }; /** * Make a get call to the backend * @param path - path * @param options - options to pass into the fetch */ export declare const get: (path: string, options?: RequestInit) => Promise<{ response: Response; data: O; }>; /** * Make a post call to the backend * @param path - path * @param body - body to pass in * @param options - options to pass into the fetch */ export declare const post: (path: string, body: FormData | Record, options?: RequestInit) => Promise<{ response: Response; data: O; }>;