import React from 'react'; type PanelStatus = 'loading' | 'available' | 'empty'; export type LiveControlsDiffPanelProps = { resetKey?: string; baseChannel?: string; compareChannel?: string; commonLabel?: string; baseLabel?: string; compareLabel?: string; showEmptyState?: boolean; onStatusChange?: (status: PanelStatus) => void; }; export declare function LiveControlsDiffPanel({ resetKey, baseChannel, compareChannel, commonLabel, baseLabel, compareLabel, showEmptyState, onStatusChange, }: LiveControlsDiffPanelProps): React.JSX.Element | null; export {};