type GithubIssue = { owner: string; repository: string; issue: string; }; export declare const parseIssue: (issue: string) => GithubIssue; export declare const getGithubOutputFile: () => string | undefined; export declare const setGithubTaskOutput: (name: string, value: string | boolean | number) => void; export declare const getGithubIssue: ({ owner, repository, issue }: { owner: string; repository: string; issue: string; }) => Promise; export declare const getGithubSummaryFile: () => string | undefined; export declare const appendToSummary: (summary: string) => void; export {};