import type { Template } from './templates'; export declare const isTmpFlagSelected: () => boolean; export declare const isYesFlagSelected: () => boolean; export declare const isNoTailwindFlagSelected: () => boolean; export declare const getPositionalArguments: () => string[]; export declare const getDirectoryArgument: () => string | null; export declare const isFlagSelected: { homePageLabel: string; shortName: string; org: string; repoName: string; description: string; longerDescription: string; cliId: "editor-starter"; defaultBranch: string; previewURL: string; } | Template | undefined; export declare const selectTemplate: () => Promise<{ homePageLabel: string; shortName: string; org: string; repoName: string; description: string; longerDescription: string; cliId: "editor-starter"; defaultBranch: string; previewURL: string; } | Template>;