import { GotApi, GotApiOptions } from '../common'; export declare type GiteaGotOptions = { paginate?: boolean; token?: string; } & GotApiOptions; export interface GiteaGotApi extends GotApi { setBaseUrl(url: string): void; } export declare const api: GiteaGotApi;