export type ColumnAffinity = 'TEXT' | 'INTEGER' | 'REAL' | 'NUMERIC' | 'BLOB'; /** * Guesses the SQLite affinity category from the declared type name using SQLite's affinity rules. */ export declare function guessAffinity(typeName?: string): ColumnAffinity;