export type TSqlTextList = { hash_key: string; title: string; created_at: string; updated_at: string; last_processed_at: string | null; is_active: boolean; is_deleted: boolean; }; export type TSqlTextDetail = TSqlTextList & { content: string; metadata_json: string | null; deleted_at: string | null; }; export type TSqlTextDetailInsert = { hash_key: string; } & Partial>; export type TSqlTextDetailUpdate = { hash_key: string; } & Partial>; export declare const SQL_DB_COLUMNS_TEXT_LIST: string[]; export declare const SQL_DB_COLUMNS_TEXT_DETAIL: string[];