import React from 'react'; export interface Messages { [key: string]: React.ReactNode; 'consent-manager.integration.default.company'?: React.ComponentType<{ IntegrationLabel: React.ComponentType; }>; 'consent-manager.integration.default.category'?: React.ComponentType<{ category: string; }>; 'consent-manager.integration.default.title'?: React.ComponentType<{ title: string; }>; 'consent-manager.integration.default.description'?: React.ComponentType<{ description: string; PrivacyPolicyLink: React.ComponentType; }>; 'consent-manager.integration.default.privacy-policy'?: React.ComponentType<{ Link: React.ComponentType; title: string; }>; 'consent-manager.fallback.default.description'?: React.ComponentType<{ IntegrationLabel: React.ComponentType; category: string; title: string; }>; 'consent-manager.fallback.default.enable'?: React.ComponentType<{ category: string; title: string; }>; } export declare const defaultMessages: Messages;