/** * Platform Integrations for mail_box_components * * This module provides platform-specific style generators and utilities * for component development. */ declare class PlatformRegistry { private generators; register(platform: string, generator: any): void; get(platform: string): any; has(platform: string): boolean; } export declare const platformRegistry: PlatformRegistry; export { webStyleGenerator } from './web'; export declare function detectPlatform(): string; export declare function getCurrentPlatformGenerator(): any; //# sourceMappingURL=index.d.ts.map