import type { DistributionUiMessages } from "../i18n/messages.js"; import { type ChannelBookingLinkRow, type RetryPushResult } from "./channel-sync-page-utils.js"; export type OperationFeedback = { tone: "success" | "error"; title: string; body: string; }; export declare function buildRetryFeedback(result: RetryPushResult, row: ChannelBookingLinkRow, messages: DistributionUiMessages["channelSync"]): OperationFeedback;