import { FunctionComponent, JSXElementConstructor, PropsWithChildren, ReactEventHandler } from "react";
export type CloseOnNavigationProps = {
    open: boolean;
    onClose: ReactEventHandler;
};
export declare const withCloseOnNavigation: <T extends PropsWithChildren<CloseOnNavigationProps>>(Modal: FunctionComponent<T> | JSXElementConstructor<T>) => FunctionComponent<T>;
