type Attrs = Record; type AttrTag = Attrs & { [rest]: Attrs[]; }; declare const rest: unique symbol; export declare function attrTag(attrs: Attrs): AttrTag; export declare function attrTags(first: undefined | AttrTag, attrs: Attrs): AttrTag; export {};