import { default as React } from 'react'; import { BillPayViewSortKey, BillTab, SortOrder } from '@zeniai/client-epic-state'; export interface BillPayListHeaderRowProps { companyNameSticky: boolean; currentTab: BillTab; sortConfig: { sortKey: BillPayViewSortKey; sortOrder: SortOrder; }; onColumnSortConfigChanged?: (sortKey: BillPayViewSortKey, sortOrder: SortOrder) => void; } declare function BillPayListHeaderRow({ companyNameSticky, currentTab, onColumnSortConfigChanged, sortConfig, }: BillPayListHeaderRowProps): import("react/jsx-runtime").JSX.Element; export declare const BillPayListHeaderRowMemo: React.MemoExoticComponent; export {};