export type TagFunction = (chunks: string[]) => string; export type TagFunctions = Record; export interface ExtractedAttributes { attributes: string; content: string; } /** * Extracts the attributes portion of inner content and the inner text portion. */ export declare function extractAttributesAndContent(content: string): ExtractedAttributes; /** * Given a string with embedded tags, returns an object with the * named tags and their values and a `text` property with the remaining text. */ export declare function extractEmbeddedTags(text: string): Record; /** * Returns the passed in value */ export declare function identity(value: T): T; /** * Formats an attriute and entity-encodes the value */ export declare function formatAttribute(name: string, value: string): string; //# sourceMappingURL=internal.d.ts.map