import { ElementType, ForwardedRef } from 'react';
export type TableWrapperProperties = {
    /** @ignore */
    className?: string;
    /** Tag of Component */
    tag?: ElementType;
};
/**
 * Container for a table that adds a border with a curved radius to the table.
 * @docs {@link https://design.visa.com/react/components/table | See Docs}
 */
declare const _default: <HTMLElementType = HTMLDivElement>(props: {
    children?: import("react").ReactNode | import("react").ReactNode[];
    ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & TableWrapperProperties) => import("react").ReactElement;
export default _default;
