import { type Package } from "./package.js"; export declare const AVAILABLE_LICENSES: readonly ["MIT", "GPL-3.0"]; export declare const DEFAULT_LICENSE: (typeof AVAILABLE_LICENSES)[number]; export type RepoPackage = Package; type DirOption = { directory: string; }; export type CreateRepoOptions = DirOption & { license?: (typeof AVAILABLE_LICENSES)[number]; upstream: string | undefined; additionalPackageOptions?: T; }; export declare function createRepo({ directory, license, upstream, additionalPackageOptions, }: CreateRepoOptions): Promise; export declare function isRepo({ directory }: DirOption): Promise; export {}; //# sourceMappingURL=repo.d.ts.map