import { Server } from './types.js';
type GithubEventName = 'push' | 'pull_request' | 'delete' | 'create' | 'issue' | 'workflow_dispatch' | 'schedule' | 'release' | 'fork' | 'star';
export declare function server(): Server;
export declare function repo(type?: 'ssh' | 'https'): string;
export declare function branch(): string;
export declare function event(): GithubEventName;
export declare function vars(): any;
export declare function run(): Promise<void>;
export {};
//# sourceMappingURL=ci.d.ts.map