import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import React from 'react'; import type { TableHeightState } from '../../../../table/index.js'; /** Props for {@link ActiveBWFlexBox}. */ export interface ActiveBWFlexBoxProps extends FlexBoxProps { visibleRows?: TableHeightState['visibleRows']; } /** Displays details for the active bound witness, or a no-selection placeholder. */ declare const ActiveBWFlexBox: { ({ ref, visibleRows, ...props }: ActiveBWFlexBoxProps): React.JSX.Element; displayName: string; }; export { ActiveBWFlexBox }; //# sourceMappingURL=ActiveBWFlexBox.d.ts.map