export type SignupAttributionInput = Record | string | null | undefined; export interface AuthAttributionContext { appName?: string | null; webpageName?: string | null; signupAttribution?: SignupAttributionInput; sdkPlatform?: string | null; } export interface ResolvedAuthAttribution { appName: string | null; webpageName: string | null; sdkPlatform: string; signupAttribution: Record | null; } export declare const normalizeSignupAttribution: (value?: SignupAttributionInput) => Record | null; export declare const resolveAuthAttribution: (context?: AuthAttributionContext) => ResolvedAuthAttribution; export declare const getAuthAttributionHeaders: (attribution: ResolvedAuthAttribution) => Record; export declare const getAuthAttributionBody: (attribution: ResolvedAuthAttribution) => Record; //# sourceMappingURL=signupAttribution.d.ts.map