import type { FunctionComponent, ReactNode } from 'react'; import { ModalProps } from '@patternfly/react-core'; export interface ModalDeckProps { /** Whether the modal is open */ isOpen: boolean; /** Deck component to display in the modal */ children: ReactNode; /** Additional Modal props */ modalProps?: Omit; } export declare const ModalDeck: FunctionComponent; export default ModalDeck;