import type { GitHub } from '../infra/github';
import type { Issue, IssueMeta } from '../types/github';
export declare const createIssue: (github: GitHub, meta: IssueMeta) => Promise<Omit<Issue, "hash">>;
