import { PropsWithChildren, FC } from 'react';
import { E2ETestable, ComposableWithRef, HasMotion, NativeTable } from '../types';
import { ComposableTbody } from './Tbody';
import { ComposableThead } from './Thead';
declare type Props = PropsWithChildren<E2ETestable & HasMotion & NativeTable & {
    disableScroll?: boolean;
}>;
interface Composites {
    Head?: ComposableThead;
    Body?: ComposableTbody;
    LoadedView?: FC;
}
export declare type ComposableSections = ComposableWithRef<HTMLTableElement, Props, Composites>;
declare const FowardedSections: ComposableSections;
export default FowardedSections;
