import { Tags, type Answers, type PluginOption } from './types.cjs';
export declare function getAnswers(possibleTargets: Record<Tags, boolean>): Promise<Answers>;
export declare function getApplicationTypeChoices(possibleTargets: Record<Tags, boolean>): {
    name: string;
    key: string;
    value: Tags[];
    checked: boolean;
}[];
export declare function getPluginChoices(targets: Tags[]): {
    name: string;
    value: PluginOption;
    checked: boolean;
}[];
