import type { Operation } from '../client/interfaces/Operation.js'; import type { Service } from '../client/interfaces/Service.js'; import type { HttpMethods } from './types.js'; type Arg = { methods?: HttpMethods; [key: string]: unknown; }; export declare const makeOperationsGetter: ({ methods, ...extraFields }: Arg) => ({ operations }: Service) => Operation[]; export {};