import { type JsonApiNotificationChannelIdentifierOut, type JsonApiNotificationChannelOut, type JsonApiNotificationChannelOutAttributesDestinationTypeEnum } from "@gooddata/api-client-tiger"; import { type INotificationChannelIdentifier, type INotificationChannelMetadataObject, type NotificationChannelDestinationType } from "@gooddata/sdk-model"; /** * Converts a notification channel identifier from backend to SDK model. * @internal */ export declare function convertNotificationChannelIdentifierFromBackend(channel: JsonApiNotificationChannelIdentifierOut): INotificationChannelIdentifier | undefined; export declare const convertJsonApiNotificationChannelOutAttributesDestinationTypeEnum: (destinationType: JsonApiNotificationChannelOutAttributesDestinationTypeEnum) => NotificationChannelDestinationType; /** * Converts notification channel from backend to SDK model. * * If unknown notification channel type is encountered, the function returns `undefined`. * * @internal */ export declare function convertNotificationChannelFromBackend(channel: JsonApiNotificationChannelOut): INotificationChannelMetadataObject | undefined; //# sourceMappingURL=NotificationChannelsConvertor.d.ts.map