import type { CrossmintHostedCheckoutV3Props } from '@crossmint/client-sdk-base'; export declare const LIB_VERSION = "1.7.2"; declare const DEFAULT_SDK_METADATA: { name: string; version: string; }; export type HostedCheckoutSdkMetadata = Partial; export type GenerateCrossmintHostedCheckoutUrlOptions = CrossmintHostedCheckoutV3Props & { apiKey: string; overrideBaseUrl?: string; sdkMetadata?: HostedCheckoutSdkMetadata; }; /** * Generates a Crossmint hosted checkout URL (v3) * Mirrors the logic in crossmintHostedCheckoutV3Service without requiring the UI layer. */ export declare function generateCrossmintPaymentUrl(options: GenerateCrossmintHostedCheckoutUrlOptions): string; export {};