import React from 'react'; import { FlintTableContainer as FlintTableContainerElement } from '@getufy/flint-ui/table/flint-table'; /** * Scrollable container that wraps a `` to provide overflow handling, optional elevation shadow, and sticky header support. * * @slot (default) - Default slot accepts a `` element. */ export interface FlintTableContainerProps extends React.HTMLAttributes { /** Applies a stronger box-shadow elevation. */ shadow?: boolean; /** Sticks the table header to the top on scroll. */ stickyHeader?: boolean; } export declare const FlintTableContainer: React.ForwardRefExoticComponent>;