import * as React from 'react'; interface ModalFooterProps { /** * The content of the footer, typically buttons */ children: React.ReactNode; /** * Additional CSS class name */ className?: string; /** * Additional inline styles */ style?: React.CSSProperties; } /** * ModalFooter component - Arbor Design System * * The footer part of a modal dialog, typically containing action buttons. * Buttons are right-aligned by default. * * @example * ```tsx * // Footer with two buttons * * * * * * // Footer with destructive action * * * * * ``` */ declare const ModalFooter: React.ForwardRefExoticComponent>; export { ModalFooter, type ModalFooterProps };