export type Tables = Record & { id?: string; title?: string; description?: string | null; metadata?: unknown; stage?: string; order_index?: number | null; created_at?: string | null; updated_at?: string | null; }; export type Database = { [table: string]: unknown; }; //# sourceMappingURL=database.d.ts.map