import type { ContextExState } from '@ariestools/sdk-react/shared'; import type { Dispatch, SetStateAction } from 'react'; /** State for the table height context, including visible rows and computed height. */ export type TableHeightState = ContextExState<{ height?: string; rowHeight?: number; setRowHeight?: Dispatch>; setVisibleRows?: Dispatch>; visibleRows?: number; }>; //# sourceMappingURL=State.d.ts.map