import { ReactNode } from 'react'; export interface ModalFooterProps { /** * Content placed on the right side of the footer (the primary actions). * If `left` is omitted, the footer simply right-aligns these children. */ children?: ReactNode; /** * Content placed on the left side of the footer. When set, the footer splits into * `left` + `right` halves — matches Figma's "Buttons left and right" variant. */ left?: ReactNode; /** * Additional class name. */ className?: string; } export declare const ModalFooter: { ({ children, left, className }: ModalFooterProps): JSX.Element; displayName: string; }; export default ModalFooter;