import { FC, PropsWithChildren } from 'react';
import { BaseProps } from '../util/type';
import './index.css';
interface OverlayWrapProps extends BaseProps {
    opened?: boolean;
    centered?: boolean;
    onExited?: (() => void) | undefined;
}
/**
 *
 * @param param0
 * @returns
 */
export declare const OverlayWrap: FC<PropsWithChildren<OverlayWrapProps>>;
export {};
