import { type DeclarativeNotificationChannelDestinationTypeEnum, type JsonApiNotificationChannelIn, type JsonApiNotificationChannelPostOptionalId } from "@gooddata/api-client-tiger"; import { type INotificationChannelMetadataObject, type INotificationChannelMetadataObjectDefinition, type NotificationChannelDestinationType } from "@gooddata/sdk-model"; type BackendReturnType = T extends INotificationChannelMetadataObject ? JsonApiNotificationChannelIn : JsonApiNotificationChannelPostOptionalId; /** * Converts notification channel from SDK model to backend format. * * @internal */ export declare function convertNotificationChannelToBackend(channel: T): BackendReturnType; /** * Converts notification channel types from SDK model to backend format. * * @internal */ export declare function convertNotificationChannelTypesToBackend(types: NotificationChannelDestinationType[]): DeclarativeNotificationChannelDestinationTypeEnum[]; export {}; //# sourceMappingURL=NotificationChannelsConvertor.d.ts.map