import { TAG_TYPES } from '../parser'; export declare function isValidTag(tag: string): boolean; export declare function extractText(text: string, reg: RegExp, valueToTake: number): string; export declare function normalizeText(text: string | null | undefined, removeLineBreak?: boolean): string; export declare function removeEmptyFromList(list: string[]): string[]; export declare function extractTag(text: string): TAG_TYPES; export declare function extractType(text: string): string; export declare function extractName(text: string): string; export declare function extractDefaultValue(text: string): string; export declare function extractRequired(text: string): boolean; export declare function extractDescription(text: string): string; export declare function extractExample(text: string, type: string): string; export declare function getAllResults(text: string, reg: RegExp, valueToTake: number): string[];