import { ReactNode, ComponentPropsWithRef } from 'react'; export interface DialogFooterProps extends ComponentPropsWithRef<'div'> { /** * Specify the actions to be displayed in the footer. * If more than 3 actions are provided, only the first 3 will be rendered */ children: ReactNode; } export declare const Footer: { ({ children, className, ...props }: DialogFooterProps): import("react/jsx-runtime").JSX.Element; displayName: string; };