import type { Generated, Insertable, Selectable, Updateable } from "kysely"; import type { SqliteWasmDatabase } from "sqlite-wasm-kysely"; export declare function applyAccountDatabaseSchema(sqlite: SqliteWasmDatabase): SqliteWasmDatabase; export type Account = Selectable; export type NewAccount = Insertable; export type AccountUpdate = Updateable; export type AccountTable = { id: Generated; name: string; }; export type ActiveAccount = Selectable; export type NewActiveAccount = Insertable; export type ActiveAccountUpdate = Updateable; export type ActiveAccountTable = { id: string; name: string; }; //# sourceMappingURL=database-schema.d.ts.map