export interface HiddenConfirmationCardProps { onClose: () => void; onUndo: () => void; onLeaveFeedback: () => void; } /** Inline confirmation card shown after hiding an insight. */ export declare const HiddenConfirmationCard: (({ onClose, onUndo, onLeaveFeedback }: HiddenConfirmationCardProps) => import("react/jsx-runtime").JSX.Element | null) & { displayName: string; }; export default HiddenConfirmationCard;