import React from 'react'; import { type ModalProps, ViewStyle } from 'react-native'; import { ThemeName } from '../constants/Colors'; export type Props = ModalProps & { variant?: ThemeName; lightColor?: string; darkColor?: string; trigger?: React.ReactNode; children?: React.ReactNode; modalVisible: boolean; setModalVisible: (value: boolean) => void; headerTitle?: string; showHeader?: boolean; containerStyle?: ViewStyle; modalVisibleBackgroundOpcity?: number; }; declare const Modal: ({ children, showHeader, trigger, headerTitle, modalVisible, setModalVisible, containerStyle, modalVisibleBackgroundOpcity, ...otherProps }: Props) => React.JSX.Element; export default Modal; //# sourceMappingURL=Modal.d.ts.map