import type { ReactNode } from 'react'; export interface PanelItemProps { header?: string | ReactNode; title?: string | ReactNode; actions?: ReactNode[]; active?: boolean; withCheckmark?: boolean; } export declare function PanelItem({ header, title, actions, active, withCheckmark }: PanelItemProps): import("react/jsx-runtime").JSX.Element;