import type { ReactNode } from "react"; import { type TableFieldConfig } from "./Table.types"; export type TableHeaderProps = { fieldConfigurations: TableFieldConfig[]; className?: string; /** * The combination of checkbox and action button above the table, * replaces the default header when there are one or more items selected. * */ selectAllComponent?: ReactNode; /** * The checkbox next to the other headers, can be used to select all items. */ selectAllCheckbox?: ReactNode; colSpan: number; }; export declare function TableHeader(props: TableHeaderProps): import("react").JSX.Element;