import { default as React } from 'react'; export type StickyTableContainerProps = { children: React.ReactNode; hasData: boolean; loading: boolean; customWidth?: number | string; customHeight?: number | string; /** If the table is next to another element, the computed width of the table will be incorrect. Use this to input the width of the element (including padding, margin, and other spacing) to have the correct width for the table. */ widthOffset?: number; /** Optional prop to add a test id to the StickyTableContainer for QA testing */ qaTestId?: string; }; export declare const StickyTableContainer: ({ children, hasData, loading, customWidth, customHeight, widthOffset, qaTestId, }: StickyTableContainerProps) => React.JSX.Element; export default StickyTableContainer;