import { Component, CSSProperties } from "react"; declare type Props = { className?: string; columns?: any[]; index?: any; style?: CSSProperties; onSelectAll: (options: any) => void; isSelectable: boolean; isSelectedAll: boolean; }; export declare class HeaderRowRenderer extends Component { handleSelect: (e: any) => void; render(): JSX.Element; } export {};