import type { ApiClientOptions, ApiConfig } from '@plyaz/types/api'; /** * Default configuration for API clients * * These defaults provide sensible out-of-the-box behavior: * - 30 second timeout for requests * - 3 retry attempts with exponential backoff * - 60 second cache TTL with 5 minute stale time * - Standard JSON content-type headers * - Soft-fail error strategy (returns error without throwing) */ export declare const DEFAULT_API_CONFIG: ApiConfig; /** * Default client options with global compliance enabled by default * * This ensures maximum privacy protection out of the box: * - Enriched headers enabled with standard preset * - Global compliance level (minimum data collection) */ export declare const DEFAULT_API_CLIENT_OPTIONS: Partial; //# sourceMappingURL=defaults.d.ts.map