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