import { default as React } from 'react'; import { ManagementViewSortKey, SortOrder } from '@zeniai/client-epic-state'; export interface Props { companyNameSticky: boolean; sortConfig: { sortKey: ManagementViewSortKey; sortOrder: SortOrder; }; isProductVerticalsColumnVisible?: boolean; isRealmIdColumnVisible?: boolean; onColumnSortConfigChanged: (sortKey: ManagementViewSortKey, sortOrder: SortOrder) => void; } declare function ManagementListHeaderRow({ companyNameSticky, sortConfig, isProductVerticalsColumnVisible, isRealmIdColumnVisible, onColumnSortConfigChanged, }: Readonly): import("react/jsx-runtime").JSX.Element; export declare const ManagementListHeaderRowMemo: React.MemoExoticComponent; export {};