export default class Helpers {
    static isUrl(string: string): boolean;
    static translateType(type: string): 'text' | 'image' | 'document' | 'audio' | 'video' | 'sticker' | 'location' | 'contacts' | 'button' | 'list';
    static translateInteractive(message: Record<string, any>): {
        type: string;
        data: {
            id: string;
            title: string;
            description?: string | undefined;
        };
    } | null;
}
