import { Oauth } from "../../domains/index.js"; import type { Fetcher } from "../../fetcher/index.js"; type OauthApiDependencies = { fetcher: Fetcher; }; export type OauthApi = { grant: { list: (payload: Oauth.Api.ListGrantsPayload) => Promise; revoke: (payload: Oauth.Api.RevokeGrantPayload) => Promise; }; }; export declare const buildOauthApi: ({ fetcher }: OauthApiDependencies) => OauthApi; export {}; //# sourceMappingURL=index.d.ts.map