import { GithubContextInterface } from "../types/GithubContextInterface"; import { GithubEventName } from "../types/GithubEventName"; import { AbstractStore } from "../utils/AbstractStore"; import { GithubContextEnvsInterface } from "../types/GithubContextEnvsInterface"; import { StringKeyValueObj } from "../types/StringKeyValueObj"; export declare class GithubContextStore extends AbstractStore { static readonly WORKFLOW_DEFAULT = "test_workflow"; static readonly RUN_NUMBER_DEFAULT = 1; static readonly JOB_DEFAULT = "test_job"; static readonly ACTOR_DEFAULT = "tester"; static readonly EVENT_NAME_DEFAULT: GithubEventName; static readonly SERVER_URL_DEFAULT = "https://github.com"; static readonly API_URL_DEFAULT = "https://api.github.com"; static readonly GRAPHQL_URL_DEFAULT = "https://api.github.com/graphql"; fakeMinimalRunnerContext(action?: string): this; toEnvVariables(): GithubContextEnvsInterface & StringKeyValueObj; clone(): this; } //# sourceMappingURL=GithubContextStore.d.ts.map