import { type IAutomationMetadataObject, type INotificationChannelIdentifier, type INotificationChannelMetadataObject } from "@gooddata/sdk-model"; import { SELECT_ITEM_ACTION } from "@gooddata/sdk-ui-kit"; type IAction = "scheduleEmail" | "delete" | typeof SELECT_ITEM_ACTION; interface IScheduledEmailProps { onDelete: (scheduledEmail: IAutomationMetadataObject) => void; onEdit: (scheduledEmail: IAutomationMetadataObject) => void; scheduledEmail: IAutomationMetadataObject; notificationChannels: INotificationChannelIdentifier[] | INotificationChannelMetadataObject[]; focusedAction?: IAction; } export declare function ScheduledEmail({ scheduledEmail, onDelete, onEdit, notificationChannels, focusedAction }: IScheduledEmailProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ScheduledEmail.d.ts.map