import type { ValuesOf } from "../../util/typings"; type TableCellRenderFunction = (data: unknown) => string | HTMLElement | Promise; type TableColumnData = { columnKey: string; label: string; render?: TableCellRenderFunction[]; }; type TableRowData = { [key: string]: { label?: string; renderData?: unknown[]; [key: string]: unknown; }; }; /** /** * Expand mode for {@link AccordionMenu} * @public */ export declare const SortDirections: { readonly ascending: "ascending"; readonly descending: "descending"; }; /** * Type for the {@link Table} Sort Direction * @public */ export type SortDirection = ValuesOf; export { type TableColumnData, type TableRowData, type TableCellRenderFunction }; //# sourceMappingURL=table.options.d.ts.map