import { FxError, Inputs } from "@microsoft/teamsfx-api"; import { Result } from "neverthrow"; import { QuestionSpec, Validator } from "../collectInputs/collectInputs"; import { Answers } from "../model/dataModel"; export interface CreateFloorTail { questions: QuestionSpec[]; answers: Answers; validators: Record; } export declare function createFloorTail(inputs: Inputs | undefined, languages: string[], showPythonPreview?: boolean): Promise>; export declare function validateCreateFloorAnswers(inputs: Inputs, answers: Answers): Promise>; //# sourceMappingURL=createFloorTail.d.ts.map