import { Octokit } from 'octokit'; import { Options } from '../types.js'; type EnsureRepositoryExistsOptions = Pick; interface RepositoryExistsResult { octokit: Octokit | undefined; repository: string; } declare function ensureRepositoryExists(octokit: Octokit | undefined, options: EnsureRepositoryExistsOptions): Promise; export { EnsureRepositoryExistsOptions, RepositoryExistsResult, ensureRepositoryExists };