export type MetaField = Record<string, string | string[] | number | null | undefined>;
export type MetaMap = Record<string, MetaField>;
export type InfoValue = true | (string | number | undefined)[];
export declare function parseInfo(infoStr: string, infoMeta: MetaMap): Record<string, InfoValue>;
