export interface TechDiveInGeneratorOptions {
    techDiveInPath: string;
}
export declare const techDiveInGenerator: (options: TechDiveInGeneratorOptions) => {
    name: string;
    generator: {
        prompts: {
            name: string;
            type: "input";
            message: string;
            validate: (promptValue: string) => boolean | string;
        }[];
        actions: (answers: import("inquirer").Answers | undefined) => {
            path: string;
            template: string;
            type: "add";
            data: {
                issueId: string | undefined;
            };
        }[];
    };
};
