import { ReactNode, RefObject } from "react"; type ListViewProps = { children: ReactNode; className?: string; containerRef?: RefObject; header?: { text: string; id: string; }; headerActions?: ReactNode; }; declare function ListView({ children, className, containerRef, header, headerActions, }: ListViewProps): JSX.Element; export default ListView;