import { default as React, ComponentPropsWithoutRef } from 'react'; import { FooterActionLayout } from '@viasat/beam-shared/components/footer'; export interface PanelFooterActionsProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the footer actions */ children?: React.ReactNode; /** * Specify how the actions are arranged in the footer * @default 'end' */ layout?: FooterActionLayout; } export declare const Actions: { ({ layout, children, className: _className, ...props }: PanelFooterActionsProps): import("react/jsx-runtime").JSX.Element; displayName: string; };