/**
 * @file index.tsx
 *
 * @fileoverview Displays a table header box that can be used to show information about
 * what is currently selected in a table.
 */
import React from 'react';
interface TableRowProps {
    /**
     * If the header is active or not. Usually means items are selected for the table.
     *
     * @default false
     */
    itemsSelected?: number;
    /**
     * The headline to display if not active.
     *
     * @default false
     */
    headline: string;
    /**
     * The actions to display for when items selected.
     */
    actions?: React.ReactNode;
}
export declare const TableHeadActions: ({ itemsSelected, headline, actions }: TableRowProps) => JSX.Element;
export {};
