/** * @license MIT * Mostly from: * @see https://github.com/AntonioVdlC/html-template-tag * @see https://github.com/AntonioVdlC/html-es6cape */ declare const trusted: unique symbol; type MixedArray = Array; export default function html(literals: TemplateStringsArray, ...substs: MixedArray): TrustedString; export type TrustedString = string & { [trusted]: true; }; export {};