import { Env, CiProvider } from "./types";
export declare class Semaphore implements CiProvider {
    private readonly env;
    constructor(env: Env);
    isCurrentlyRunning(): boolean;
    getPullRequestID(): number | undefined;
    getCurrentSha(): string;
    isFork(): boolean;
    getProjectSlug(): string;
    supportsSpeculativeBranchSelection(): boolean;
}
