import { SerializedTemplateInfo, TemplateInfo } from "@opticss/template-api"; export declare const TEMPLATE_NAME = "GlimmerTemplates.ResolvedFile"; export declare type TEMPLATE_TYPE = typeof TEMPLATE_NAME; export interface ResolvedPath { specifier: string; fullPath: string; } export declare class ResolvedFile implements TemplateInfo { identifier: string; string: string; path: string; type: TEMPLATE_TYPE; constructor(templateString: string, specifier: string, fullPath: string); serialize(): SerializedTemplateInfo; static deserialize(identifier: string, str: unknown, fullPath: unknown): ResolvedFile; } declare module "@opticss/template-api" { interface TemplateTypes { [TEMPLATE_NAME]: ResolvedFile; } } //# sourceMappingURL=Template.d.ts.map