import { type Kysely } from 'kysely'; /** * Initial schema. * * Written against the SQLite feature set because that is what both dev (node:sqlite) and * production (D1) run. Types are chosen to be portable: TEXT for timestamps and JSON, INTEGER * for booleans. */ export declare function up(db: Kysely): Promise; export declare function down(db: Kysely): Promise;