import type { SimpleTableExports } from "./SimpleTable.svelte"; import type { SimpleTableSvelteProps, SvelteDefaultRowData } from "./types"; export type MountSimpleTableOptions = { target: Document | Element | ShadowRoot; props: SimpleTableSvelteProps; intro?: boolean; }; /** * Imperative mount with `TData` inferred from `props` (same role as typing * `` in a Svelte template). Prefer this over bare * `mount(SimpleTable, …)`, whose typings collapse to the default row shape. */ export declare function mountSimpleTable(options: MountSimpleTableOptions): SimpleTableExports;