import { ParseOptions, TagOptions } from '../type';
import Th from './th';
declare class Td extends Th {
    constructor(str: string, tagName: string | undefined, options: TagOptions);
    parseValidSubTag(subTagStr: string, subTagName: string, options: ParseOptions): [string, any];
    exec(prevGap?: string, endGap?: string): string;
}
export default Td;
