import type TableRow from "./TableRow"; import type { IndicatorColumn } from ".."; import { type RowEventHandler, type TableEventHandler } from "../UniDataTable"; import type DataColumn from "../lib/DataColumn"; import { OrderDirection } from "../lib/OrderDirection"; interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const FixedColumnsPanel: $$__sveltets_2_IsomorphicComponent<{ fixedCols?: Array; indicatorColumn: IndicatorColumn | null; width: number; scrollTop?: number; rows: Array; handleWidthChange: TableEventHandler; handleRowExpand: RowEventHandler; handleCellClick: (col: DataColumn) => any; orderColumn: DataColumn; orderDirection: OrderDirection; selectedRows?: Array; expandRow: TableRow | null; rowHeight: number; inlineRowHeight?: number; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type FixedColumnsPanel = InstanceType; export default FixedColumnsPanel;