import React, { FC } from "react";
interface InterfaceProps {
    children: React.ReactNode;
    closeCallback?: () => void;
}
export declare const Interface: FC<InterfaceProps>;
export {};
