import { ReactNode } from 'react'; export type EntryRowProps = { children: ReactNode; description?: string | null; disclosure?: ReactNode; identity?: string; label: string | null; }; /** * The shared frame every entry renders into: label on one side, value on the * other. An entry with disclosure content turns the whole row into the toggle, * which is why the list drops to `role="list"` as soon as one exists. */ export declare function EntryRow({ children, description, disclosure, identity, label, }: EntryRowProps): ReactNode;