import type { ComponentPropsWithRef, ElementType } from 'react'; export type TableWrapperProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Container for a table that adds a border with a curved radius to the table. * @docs {@link https://design.visa.com/components/table/?code_library=react | See Docs} */ declare const TableWrapper: { ({ className, tag: Tag, ...remainingProps }: TableWrapperProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default TableWrapper;