import { HttpSuccessResponseBody } from '../../index.js'; /** * Creates a fetch client to consume data from the Specify HTTP Public API. * @internal * @param personalAccessToken */ export declare function createFetchClient(personalAccessToken: string | undefined): { get: ({ path }: { path: string; }) => Promise>; post: ({ path, body }: { path: string; body: any; }) => Promise>; }; //# sourceMappingURL=createFetchClient.d.ts.map