import { Schema, Table } from "../table"; interface SetupParams { schema: Schema; baseTable: Table; tenantAttr: string; tenantAttrValue: any; } export declare function createTenantTable(setup: SetupParams): Table; export {};