import type { Answers } from "./questions"; export type CheckResult = true | string; /** * * @param category * @param min * @param answers */ export declare function checkMinSelections(category: string, min: number, answers: any[]): Promise; /** * * @param name * @param options */ export declare function checkAdapterName Promise; }>(name: string, options?: T): Promise; /** * * @param title */ export declare function checkTitle(title?: string): CheckResult; /** * * @param name */ export declare function checkAuthorName(name?: string): Promise; /** * * @param email */ export declare function checkEmail(email: string): Promise; /** * * @param tools */ export declare function checkTypeScriptTools(tools: Exclude): Promise; /** * * @param name */ export declare function transformAdapterName(name: string): string; /** * * @param description */ export declare function transformDescription(description: string): string | undefined; /** * * @param keywords */ export declare function transformKeywords(keywords: string): string[] | undefined; /** * * @param contributors */ export declare function transformContributors(contributors: string): string[] | undefined;