import { type UIComponent, type ITableProps, type IUIComponentHandler } from "../types"; type $$ComponentProps = { component: UIComponent & { properties: Partial>; }; onPropertyChange: (updates: Partial<{ properties?: string | object; name?: string; access?: string; eventHandler?: IUIComponentHandler; }>) => void; forConstructor?: boolean; }; declare const TableProps: import("svelte").Component<$$ComponentProps, {}, "">; type TableProps = ReturnType; export default TableProps;