import type { ComponentPropsWithRef, ElementType } from 'react'; export type ThProperties = { /** Alt */ alternate?: boolean; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Table header cell component usually used for titles and column/row descriptions. * @docs {@link https://design.visa.com/components/table/?code_library=react | See Docs} */ declare const Th: { ({ alternate, className, scope, tag: Tag, ...remainingProps }: ThProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Th;