import * as React from 'react'; import { SizeType } from 'libs/ui/src/lib/util/global-props'; declare type PropsType = { children: React.ReactNode; padding?: SizeType; style?: React.CSSProperties; stickyHeader?: boolean; }; export declare const TableHead: React.MemoExoticComponent<(props: PropsType) => JSX.Element>; export {};