import './MiniScrollableTable.css'; import React from 'react'; export declare const MiniScrollableTable: ({ headerComponent, rowComponent, footerComponent, width, maxContentHeight, type, testId, }: { headerComponent: React.ReactNode; rowComponent: React.ReactNode; footerComponent?: React.ReactNode; width?: string; maxContentHeight?: string; type?: 'Primary' | 'Secondary'; testId?: string; }) => React.JSX.Element; declare const _default: any; export default _default;