interface LicenseContext { year: string; author: string; email: string; } export type SupportedLicense = string; export declare const DEFAULT_LICENSE = "MIT"; export declare const CONSTRUCTIVE_LICENSE = "CONSTRUCTIVE"; export declare const CLOSED_LICENSE = "CLOSED"; export declare const LICENSE_VALUE_KEYS: string[]; export declare const LICENSE_AUTHOR_KEYS: string[]; export declare const LICENSE_EMAIL_KEYS: string[]; export declare function isSupportedLicense(name: string): name is SupportedLicense; export declare function renderLicense(licenseName: string, context: Partial): string | null; export declare function listSupportedLicenses(): string[]; export declare function findLicenseValue(answers: Record): string | undefined; export declare function findLicenseAuthor(answers: Record): string | undefined; export declare function findLicenseEmail(answers: Record): string | undefined; export {};