import React from "react"; interface Props { headerText: string; headerControls?: React.ReactNode; maxHeight?: string; headerClassName?: string; children: React.ReactNode | React.ReactNode[]; } export declare const ListWithHeader: (props: Props) => JSX.Element; export {};