import type { ContextExProviderProps } from '@ariestools/sdk-react/shared'; import type { PropsWithChildren } from 'react'; import React from 'react'; /** Props for {@link TableHeightProvider}. */ export interface TableHeightProviderProps extends ContextExProviderProps, PropsWithChildren { /** @field Account for optional header and footer rows */ additionalRows?: number; defaultVisibleRows?: number; heightFormat?: string; } /** Provides calculated table height based on row height and visible row count. */ export declare const TableHeightProvider: React.FC; //# sourceMappingURL=Provider.d.ts.map