import { TagsInterface } from '@asyncapi/parser'; export interface TagObject { name: string; tags: TagsInterface; data: T; } export interface SortedReturnType { tagged: Map; untagged: TagObject[]; } export declare function filterObjectsByTags(tags: string[], objects: Array>): SortedReturnType; //# sourceMappingURL=sidebar.d.ts.map