import type { PropsWithChildren } from 'react'; interface AccordionRowProps extends PropsWithChildren { label: string; leftContent?: JSX.Element; rightCollapsedContent?: JSX.Element; } export declare function AccordionRow({ label, leftContent, rightCollapsedContent, children, }: AccordionRowProps): JSX.Element; export {};