import TableAbstract, { TableAbstractProps, TableTags } from './TableAbstract';
export type TableProps = TableAbstractProps & {
    list: TableTags[];
};
export default class Table extends TableAbstract {
    list: TableTags[];
    constructor(props: TableProps);
}
