import React from 'react'; import type { ButtonBaseProps } from '../../buttons/Button'; import { type HStackBaseProps, type HStackDefaultElement, type HStackProps, } from '../../layout/HStack'; export type ModalFooterBaseProps = Omit & { /** Primary action button */ primaryAction: NonNullable< React.ReactElement< ButtonBaseProps & { onClick?: React.MouseEventHandler; } > >; /** Secondary action button */ secondaryAction?: React.ReactElement< ButtonBaseProps & { onClick?: React.MouseEventHandler; } >; }; export type ModalFooterProps = ModalFooterBaseProps & Omit, 'children'>; export declare const ModalFooter: React.MemoExoticComponent< (_props: ModalFooterProps) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=ModalFooter.d.ts.map