import { ReactNode } from 'react';
export type RowSelectionUIProps = {
    show?: boolean;
    selectedRowCount: number;
    onClearSelection: () => void;
    customControls?: ReactNode;
};
/**
 * UI-only component for displaying the number of table rows selected, along with actions that can be performed on those rows
 */
export declare function RowSelectionUI(props: RowSelectionUIProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=RowSelectionUI.d.ts.map