import React from "react";
export declare type InPlaceModalProps = {
    children: React.ReactNode;
    modalHeight: number;
    maxWidth?: string;
    fullWidth?: boolean;
    onClose: Function;
    open: boolean;
    customStyle?: string;
};
declare const _default: ({ onClose, open, modalHeight, maxWidth, fullWidth, children, customStyle, }: InPlaceModalProps) => JSX.Element;
export default _default;
