export declare function parseHeaderText(text: string): {
    tag: string;
    data: {
        tag: string;
        value: string;
    }[];
}[];
