import { ReactNode } from 'react'; export type RightSidePanelTitleAlign = "left" | "center"; export interface RightSidePanelHeaderProps { title: ReactNode; closeButtonDataTestId?: string; isQuickViewCardStyle?: boolean; subtitle?: string; titleAlign?: RightSidePanelTitleAlign; onClose: () => void; } export declare function RightSidePanelHeader({ title, subtitle, isQuickViewCardStyle, closeButtonDataTestId, titleAlign, onClose, }: Readonly): import("react/jsx-runtime").JSX.Element;