import type { BootstrapProfile } from './types.js'; export declare const toBootstrapProfile: (input?: BootstrapProfile) => BootstrapProfile; export declare const toBootstrapRequest: (userId: string, profile: BootstrapProfile, environment: "test" | "live") => { userId: string; email: string | undefined; fullName: string | undefined; metadata: { source: string; environment: "test" | "live"; }; attribution: import("../../../index.js").FunnelUserAttribution | undefined; }; export declare const toBootstrapFingerprint: (request: ReturnType, funnelVersionId: string) => { funnelVersionId: string | null; userId: string; email: string | null; fullName: string | null; metadata: { source: string; environment: "test" | "live"; }; attribution: import("../../../index.js").FunnelUserAttribution; };