import type { Variable } from '@magidoc/plugin-starter-variables'; export type RawMagidocTemplateConfig = { SUPPORTED_OPTIONS: ReadonlyArray>; SCHEMA_TARGET_LOCATION: string; STATIC_ASSETS_LOCATION: string; ENV_FILE_LOCATION: string; }; export declare function loadTemplateConfig(path: string): Promise; export declare function parseTemplateConfig(content: unknown): RawMagidocTemplateConfig;