import type { Expression } from "@hylimo/core"; import { StringLiteralExpression } from "@hylimo/core"; /** * Module providing the properties and methods content handler * Requires the sections content handler */ export declare const propertiesAndMethodsModule: import("../../contentModule.js").ContentModule; /** * Converts an expression to a string, assuming the expression is either a string literal or an identifier. * If the expression is not a string literal or an identifier, an error is thrown. * * @param expression the expression to convert * @returns the string representation of the expression */ export declare function convertStringOrIdentifier(expression: Expression): string; /** * Converts a string literal expression to a string * If the expression uses string template expressions, an error is thrown. * * @param expression the expression to convert * @returns the string representation of the expression */ export declare function convertString(expression: StringLiteralExpression): string; //# sourceMappingURL=propertiesAndMethods.d.ts.map