import { type Payload } from '@xyo-network/sdk'; /** Captures UTM query params into session storage and optionally clears them from the URL. */ export declare const useCaptureUtmLocation: (removeAfterCapture?: boolean) => { utmPayload: Payload<{ schema: string & { readonly __schema: true; }; utm_campaign?: string | undefined; utm_content?: string | undefined; utm_medium?: string | undefined; utm_source?: string | undefined; utm_term?: string | undefined; }> | null; error: Error | undefined; }; //# sourceMappingURL=useCaptureUtmLocation.d.ts.map