import React from 'react'; import type { ViewStyle } from 'react-native'; interface ModalProps { visible?: boolean; title?: string; style?: ViewStyle; _tokens?: Record; _motion?: Record; children?: React.ReactNode; onClose?: () => void; testID?: string; } export declare function Modal({ visible, title, style, _tokens, _motion, children, onClose, testID }: ModalProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=modal.d.ts.map