/** Available platforms */ export type Platform = "discord" | "messenger" | "telegram" | "whatsapp"; interface PlatformInformation { name: string; color: [number, number, number]; defaultFilename: string; support: { stickers: boolean; reactions: boolean; replies: boolean; edits: boolean; calls: boolean; }; } export declare const PlatformsInfo: { [key in Platform]: PlatformInformation; }; export {};