import type { Check } from "./checks.js"; import type { ForeignKey } from "./foreign-keys.js"; import type { Index } from "./indexes.js"; import type { PrimaryKey } from "./primary-keys.js"; import { SQLiteTable } from "./table.js"; import { type UniqueConstraint } from "./unique-constraint.js"; import type { SQLiteView } from "./view.js"; export declare function getTableConfig(table: TTable): { columns: import("./index.js").SQLiteColumn[]; indexes: Index[]; foreignKeys: ForeignKey[]; checks: Check[]; primaryKeys: PrimaryKey[]; uniqueConstraints: UniqueConstraint[]; name: string; }; export type OnConflict = 'rollback' | 'abort' | 'fail' | 'ignore' | 'replace'; export declare function getViewConfig(view: SQLiteView): { name: TName; originalName: TName; schema: string | undefined; selectedFields: import("../index.js").ColumnsSelection; isExisting: TExisting; query: TExisting extends true ? undefined : import("../index.js").SQL; isAlias: boolean; };