import { default as React, ComponentPropsWithoutRef } from 'react'; import { BoxBackgroundColor } from '@viasat/beam-shared/components/box'; export interface PanelBodyProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the Panel body */ children?: React.ReactNode; /** * Specify the background color of the body surface */ backgroundColor?: BoxBackgroundColor; } export declare const Body: { ({ children, className: _className, backgroundColor, ...props }: PanelBodyProps): import("react/jsx-runtime").JSX.Element; displayName: string; };