import ColumnDef, { Accessor } from "../types/ColumnDef"; import { Pinned } from "../types/Pinned"; import { RowId } from "../types/RowId"; export { isHeaderExcludedFromLayout } from "./headerLayoutUtils"; export declare const getCellId: ({ accessor, rowId }: { accessor: Accessor; rowId: RowId; }) => string; export declare const displayCell: ({ header, pinned, headers, collapsedHeaders, rootPinned, }: { header: ColumnDef; pinned?: Pinned; headers?: ColumnDef[]; collapsedHeaders?: Set; rootPinned?: Pinned; }) => true | null; export declare const getCellKey: ({ rowId, accessor }: { rowId: RowId; accessor: Accessor; }) => string;