import React, { ReactNode } from 'react'; import './ListRow.css'; export type ListRowProps = { content: string | ReactNode; active: boolean; onClick?: Function; onKeyDown?: any; leftIcon?: React.ReactNode; rightArrow?: boolean; lockIcon?: boolean; className?: string; id?: string; linkToRow?: string; newEntryIcon?: boolean; newEntryOnClick?: Function; testId?: string; version?: "v1" | "v2"; infoIcon?: boolean; infoTooltip?: string; }; declare const ListRow: (props: ListRowProps) => React.JSX.Element; export default ListRow;