import Tag from '../Tag';
import { ParseOptions, TagName, TagOptions } from '../type';
declare class Ul extends Tag {
    constructor(str: string, tagName: string | undefined, options: TagOptions);
    __isValidSubTag__(subTagName: TagName): boolean;
    getValidSubTagName(subTagName: TagName): string | null;
    parseValidSubTag(subTagStr: string, subTagName: string, options: ParseOptions): [string, any];
    parseOnlyString(): [string, any];
    exec(prevGap?: string, endGap?: string): string;
}
export default Ul;
