import { ReactNode } from 'react';
import { StyleProp, ViewStyle } from 'react-native';
type ModalProps = {
    visible: boolean;
    onClose?: () => void;
    children: ReactNode;
    title?: string;
    avoidKeyboard?: boolean;
    onBackButtonClick?: () => void;
    hideScrollView?: boolean;
    containerStyle?: StyleProp<ViewStyle>;
    contentStyle?: StyleProp<ViewStyle>;
    footer?: ReactNode;
};
export declare const Modal: ({ visible, onClose, children, title, avoidKeyboard, onBackButtonClick, hideScrollView, containerStyle, contentStyle, footer, }: ModalProps) => import("react/jsx-runtime").JSX.Element;
export {};
