/** @public */ export type GraphQLEndpoint = { id: string; title: string; fetcher: (body: any) => Promise; }; /** @public */ export type GraphQLBrowseApi = { getEndpoints(): Promise; }; /** @public */ export declare const graphQlBrowseApiRef: import("@backstage/core-plugin-api").ApiRef;