import type { IDomain } from './config.types'; export type IAnswersBase = Record; export interface IAnswersCore { domains: Record; depth: number; currentDomain: string | undefined; initialPromptsPaused: boolean; structurePromptsPaused: boolean; userPromptsPaused: boolean; } export type IAnswers = IAnswersBase & IAnswersCore; export declare enum QuestionEnum { Create = "create" } export declare enum Answer { CreateNew = "[Create New]" }