export interface WebhookProviderPublicConfig { minimumAmount?: number; maximumAmount?: number; widgetImage?: string; conversionRate?: number; currencyIcon?: string; } export interface WebhookProviderPrivateConfig { webhookUrl: string; authorizationHeader?: string; } export interface WebhookProviderInternalConfig { secretKey: string; }