import { CSSProperties, ReactNode } from 'react';
interface Props {
    busy?: boolean;
    checked?: boolean;
    children?: ReactNode;
    onCheckboxPress?: (shiftKey: boolean) => void;
    showCheckBox?: boolean;
    style?: CSSProperties;
    ariaColIndex: number;
    ariaRowIndex: number;
    dataRowIndex?: number;
}
export default function RowHeader({ children, checked, onCheckboxPress, style, busy, ariaColIndex, ariaRowIndex, dataRowIndex }: Props): import("react/jsx-runtime").JSX.Element;
export {};
