import { type Result } from "@adviser/cement"; import { FireflyDatabase } from "@vibes.diy/vibe-runtime"; import type { DashAuthType } from "@fireproof/core-types-protocols-dashboard"; export interface FireproofOpts { apiUrl?: string; appSlug?: string; userSlug?: string; getToken?: () => Promise>; } export declare function fireproof(name: string, opts?: FireproofOpts): FireflyDatabase; export declare function __resetFireproofForTesting(): void;