import React from "react"; /** * This is in charge of the headers at the top of the table. The headers are * stuck to the top of the table and need to be manually positioned. */ export declare const Headers: ({ headers, numStickyColumns, }: { headers: { height: number; borderTopColor?: string; borderBottomColor?: string; row: { key: string; component: React.ReactNode; columnSpan: number; borderLeftColor?: string; borderRightColor?: string; }[]; }[]; numStickyColumns: number; }) => JSX.Element;