/** * This grabs the manifold_api_token from local storage, and sets the auth header in requests. * You may also pass through any other fetch options you’d like. */ export declare function withAuth(authToken: string, options?: RequestInit): RequestInit | undefined; export declare function waitForAuthToken(getAuthToken: () => string | undefined, wait: number, resume: () => Promise): Promise;