export default GitHubPipe; export type Pipe = import("../../types/types.js").Pipe; export type TestData = import("../../types/types.js").TestData; /** * @typedef {import('../../types/types.js').Pipe} Pipe * @typedef {import('../../types/types.js').TestData} TestData * @class GitHubPipe * @implements {Pipe} */ declare class GitHubPipe implements Pipe { constructor(params: any, store?: {}); isEnabled: boolean; store: {}; tests: any[]; token: any; description: any; ref: string; repo: string; jobKey: string; hiddenCommentData: string; issue: number; start: Date; prepareRun(): Promise; createRun(): Promise; addTest(test: any): void; finishRun(runParams: any): Promise; octokit: import("@octokit/core").Octokit & import("@octokit/plugin-rest-endpoint-methods/dist-types/generated/method-types.js").RestEndpointMethods & import("@octokit/plugin-rest-endpoint-methods").Api & { paginate: import("@octokit/plugin-paginate-rest").PaginateInterface; }; sync(): Promise; toString(): string; }