import { ProviderEnvConfig } from '../../config/configuration'; export interface LegacyProviderApiResponse { success?: boolean; message?: string; code?: string; data?: Record; // CentInsur API format IsSucceed?: boolean; Result?: { Result?: boolean; ErrorMessage?: string | null; ExternalServiceResponseDuration?: number; [key: string]: unknown; }; TrackingCode?: string; } export type ProviderConfigSlice = ProviderEnvConfig;