import type { SQLChunk } from "../core/sql.js"; export interface ViewConfig { name: string; query: { toSQL(): SQLChunk; }; materialized?: boolean; } export declare function pgView(name: string, query: { toSQL(): SQLChunk; }): ViewConfig; export declare function pgMaterializedView(name: string, query: { toSQL(): SQLChunk; }): ViewConfig; //# sourceMappingURL=view.d.ts.map