import { type SurfaceProperties } from '../surface';
export type PanelContentProperties = SurfaceProperties;
/**
 * Container for all panel content, included heading and body.
 * @docs {@link https://design.visa.com/components/panel/?code_library=react | See Docs}
 */
declare const PanelContent: {
    ({ className, ...remainingProps }: PanelContentProperties): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default PanelContent;
