import type DataColumn from "../lib/DataColumn"; import type TableRow from "./TableRow"; import UniDataTable, { type TableEventHandler } from "../UniDataTable"; import { OrderDirection } from "../lib/OrderDirection"; import type { GetRowFontStyle } from "../lib/types"; 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 ContentPanel: $$__sveltets_2_IsomorphicComponent<{ columns: Array; rows: Array; orderColumn: DataColumn; orderDirection: OrderDirection; getRowFontStyle: GetRowFontStyle | undefined; emptyIndicator?: string | null; list: Array; expandRow: TableRow | null; scrollTop?: number; rowHeight: number; inlineRowHeight?: number; inlineComponent?: any; table: UniDataTable; showVerticalScroll?: boolean; displayHorizontalScroll?: boolean; handleWidthChange: TableEventHandler; handleCellClick: (col: DataColumn) => any; tabWidth: number; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type ContentPanel = InstanceType; export default ContentPanel;