import { type INotificationChannelIdentifier, type INotificationChannelMetadataObject } from "@gooddata/sdk-model"; import { type OverlayPositionType } from "@gooddata/sdk-ui-kit"; export interface IAlertDestinationSelectProps { id: string; selectedDestination: string | undefined; onDestinationChange: (destinationId: string) => void; destinations: INotificationChannelIdentifier[] | INotificationChannelMetadataObject[]; overlayPositionType?: OverlayPositionType; closeOnParentScroll?: boolean; } export declare function AlertDestinationSelect({ id, selectedDestination, onDestinationChange, destinations, overlayPositionType, closeOnParentScroll }: IAlertDestinationSelectProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AlertDestinationSelect.d.ts.map