export interface TangibleProviderPublicConfig { productPrice: number; productImage?: string; email?: boolean; address?: boolean; productDetails?: string; } export interface TangibleProviderPrivateConfig { webhookUrl: string; authorizationHeader?: string; } export interface TangibleProviderInternalConfig { secretKey: string; }