import type { MetadataParser, MetadataType } from './types.js'; export declare function registerParser(parser: MetadataParser): void; export declare function getParser(type: MetadataType): MetadataParser | undefined; export declare function getAllParsers(): MetadataParser[]; export declare function getFilteredParsers(include?: MetadataType[], exclude?: MetadataType[]): MetadataParser[];