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