import type { ComponentPropsWithRef, ElementType } from 'react'; export type PanelBodyProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Container for panel body elements. * @docs {@link https://design.visa.com/components/panel/?code_library=react | See Docs} */ declare const PanelBody: { ({ className, tag: Tag, ...remainingProps }: PanelBodyProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default PanelBody;