import { Conversation } from '@sinch/sdk-core';
export declare const formatListAllAppsResponse: (response: Conversation.ListAppsResponse | undefined) => {
    apps: {
        id: string | undefined;
        display_name: string | undefined;
        channel_credentials: {
            channel: "APPLEBC" | "INSTAGRAM" | "KAKAOTALK" | "KAKAOTALKCHAT" | "LINE" | "MESSENGER" | "MMS" | "RCS" | "SMS" | "TELEGRAM" | "VIBER" | "VIBERBM" | "WECHAT" | "WHATSAPP";
        }[] | undefined;
    }[];
};
