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