import { n as Type, t as Infer } from "./schema-eMFkYY24.mjs"; //#region src/common/schema/sql/table.d.ts interface Column { readonly _table: string; readonly _name: string; readonly _type: Type; readonly __row?: T; } type TableShape = Record>; type TableColumns = { readonly [K in keyof S & string]: Column> } & { readonly _name: N; readonly _shape: S; }; declare function table(name: N, shape: S): TableColumns; declare function isColumn(v: any): v is Column; //#endregion export { table as a, isColumn as i, TableColumns as n, TableShape as r, Column as t }; //# sourceMappingURL=table-Cr8tjDIL.d.mts.map