import { PropsWithChildren } from 'react'; export interface Props { label: string; to?: string; linkLabel?: string; linkAccessibilityLabel?: string; noWrap?: boolean; } export declare function ReviewItem({ children, label, to, linkLabel, linkAccessibilityLabel, noWrap, }: PropsWithChildren): JSX.Element; export interface ReviewBlockProps { title?: string; titleHidden?: boolean; } export declare function ReviewBlock({ children, title, titleHidden, }: PropsWithChildren): JSX.Element;