import React from 'react';
import { ISurface } from '../Surface/Surface';
export declare type ITableHead = ISurface & {
    sticky?: boolean;
    stickyOffset?: number;
    loading?: boolean;
    timeout?: number;
    LinearGradientProps?: any;
    TableRowLoaderProps?: any;
};
declare const TableHead: React.FC<ITableHead>;
export default TableHead;
