import { default as React } from 'react'; import { PanelVariant } from '../Panel/constants'; export interface PanelListProps { /** Panels to render inside the PanelList */ children?: React.ReactNode; /** Changes the visual representation of the panel. Default: fill */ variant?: PanelVariant; /** Sets the data-testid attribute. */ testId?: string; /** Highlights text in title and content. Used for search results */ highlightText?: string; /** Ref passed to the container element */ ref?: React.Ref; } declare const PanelList: React.FC; export default PanelList;