import * as React from 'react'; export interface TheadProps extends React.HTMLProps { /** Content rendered inside the row group */ children?: React.ReactNode; /** Additional classes added to the element */ className?: string; /** Won't wrap the table head if true */ noWrap?: boolean; /** @hide Forwarded ref */ innerRef?: React.Ref; /** Indicates the contains a nested header */ hasNestedHeader?: boolean; } export declare const Thead: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=Thead.d.ts.map