import { type Table, type TableConfig, type TableDefinition } from './Table.js'; type Prefix = `${SchemaName}.${TableName}`; export interface Schema { table(tableName: TableName, columns: Definition, config?: (self: Table) => TableConfig>): Table>; } export declare function schema(schemaName: SchemaName): Schema; export {};