import { type InterpolateOptions } from './interpolate.js'; import type { EnvVar, Environment, HushContext } from '../types.js'; export interface LocalTemplateResult { hasTemplate: boolean; templateDir: string; vars: EnvVar[]; files: string[]; } export declare function loadLocalTemplates(contextDir: string, env: Environment, fs: HushContext['fs']): LocalTemplateResult; export declare function resolveTemplateVars(templateVars: EnvVar[], rootSecrets: Record, options?: InterpolateOptions): EnvVar[]; //# sourceMappingURL=template.d.ts.map