import type React from 'react';
import type { ReactNode } from 'react';
import type { BaseProps } from '../BaseProps';
export interface TableFooterProps extends BaseProps<HTMLTableSectionElement> {
    ref?: React.Ref<HTMLTableSectionElement>;
    children: ReactNode;
}
export declare function TableFooter({ ref, children, xstyle, className, style, ...rest }: TableFooterProps): React.JSX.Element;
export declare namespace TableFooter {
    var displayName: string;
}
//# sourceMappingURL=TableFooter.d.ts.map