import { SocialPlatform, SocialPlatformKey } from './types'; /** * Registry of all supported social platforms. * Platforms are listed in a standard order for consistent UI display. */ export declare const PLATFORM_REGISTRY: readonly SocialPlatform[]; /** * Array of all platform keys, derived from the registry. */ export declare const ALL_PLATFORM_KEYS: readonly SocialPlatformKey[]; /** * Lookup a platform configuration by its key. * @param key - The platform key to look up * @returns The platform configuration, or undefined if not found */ export declare function getPlatformByKey(key: SocialPlatformKey): SocialPlatform | undefined;