import type { PropsWithChildren } from 'react'; interface DetailRowProps { label: JSX.Element | string; sublabel?: string; onClick?: () => void; } export declare function DetailRow({ label, sublabel, onClick, children, }: PropsWithChildren): JSX.Element; export {};