import { IExpression } from "./IExpression"; export declare class StringTemplateExpression implements IExpression { readonly template: string; type: StringConstructor; constructor(template: string); toString(): string; clone(): this; hashCode(): number; }