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