import { S as Scope } from './interfaces-974f9e53.js'; interface BaseArgs { outputPath: string; config: string; folder?: string; } interface Args extends BaseArgs { scope: Scope[]; } interface ApiCallArgs extends BaseArgs { ids: string[]; } declare const gitlabApiCall: ({ ids, folder, outputPath, config }: ApiCallArgs) => Promise; declare function fetcher({ scope, outputPath, config }: Args): Promise; export { fetcher as default, gitlabApiCall };