import type { Variable } from '@magidoc/plugin-starter-variables'; import type { TmpLocation } from '../../template/tmp'; import type { Task } from '../runner'; type Ctx = { tmpDirectory: TmpLocation; templateConfiguration: ResolvedMagidocTemplateConfig; }; export type ResolvedMagidocTemplateConfig = { supportedOptions: ReadonlyArray>; schemaTargetLocation: string; staticAssetsLocation: string; envFileLocation: string; }; export declare function templateConfigurationFile(templateDirectory: string): string; export declare function resolveTemplateConfigurationTask(): Task; export {};