import type { IParserData } from './interface'; type ParserFunction = (data: any, cfg?: any) => IParserData; type transformFunction = (data: IParserData, cfg?: any) => IParserData; export declare const getParser: (type: string) => ParserFunction; export declare const registerParser: (type: string, parserFunction: ParserFunction) => void; export declare const getTransform: (type: string) => transformFunction; export declare const registerTransform: (type: string, transFunction: transformFunction) => void; export {};