import React from 'react'; import type { PressableProps } from 'react-native'; import type { ButtonBaseProps } from '../../buttons/Button'; import { type ButtonGroupProps } from '../../buttons/ButtonGroup'; import { type BoxBaseProps, type BoxProps } from '../../layout/Box'; export type ModalFooterBaseProps = Omit & Pick & { /** Primary action button */ primaryAction: NonNullable< React.ReactElement< ButtonBaseProps & { onPress?: PressableProps['onPress']; } > >; /** Secondary action button */ secondaryAction?: React.ReactElement< ButtonBaseProps & { onPress?: PressableProps['onPress']; } >; }; export type ModalFooterProps = ModalFooterBaseProps & Omit; export declare const ModalFooter: React.MemoExoticComponent< (_props: ModalFooterProps) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=ModalFooter.d.ts.map