import { DatabaseItemType } from '@awhere/interfaces';
import StructuredCollection from '../_BaseClass/StructuredCollection';
export default class Table extends StructuredCollection {
    get type(): import("@awhere/interfaces").ItemTypeChildren.databaseItem;
    get subtype(): DatabaseItemType;
    constructor(props?: Partial<Table>);
}
