import { default as React, ComponentPropsWithoutRef } from 'react'; import { BoxBackgroundColor } from '@viasat/beam-shared/components/box'; import { PanelDividerColor } from '../Panel.types'; export interface PanelFooterProps extends ComponentPropsWithoutRef<'footer'> { /** * Specify the content for the Panel footer */ children?: React.ReactNode; /** * Whether to show a divider above the footer * @default true */ divider?: boolean; /** * Specify the border color of the footer divider * @default '01' */ dividerColor?: PanelDividerColor; /** * Specify the background color of the footer surface */ backgroundColor?: BoxBackgroundColor; } export declare const Footer: { ({ children, className: _className, divider, dividerColor, backgroundColor, ...props }: PanelFooterProps): import("react/jsx-runtime").JSX.Element; displayName: string; Actions: { ({ layout, children, className: _className, ...props }: import('./Panel.Footer.Actions').PanelFooterActionsProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; };