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; userHandle?: string; getToken?: () => Promise>; } export declare function buildVibeApiUrl(apiUrl: string, ownerHandle: string, appSlug: string): string; export declare function fireproof(name: string, opts?: FireproofOpts): FireflyDatabase; export declare function __resetFireproofForTesting(): void;