declare function Tail({ children }: {
    children: any;
}): JSX.Element;
declare namespace Tail {
    var Info: ({ children }: {
        children: any;
    }) => JSX.Element;
    var Toggle: ({ children, button, active }: {
        children: any;
        button: any;
        active: any;
    }) => JSX.Element;
    var Dismiss: ({ onClick }: {
        onClick: () => void;
    }) => JSX.Element;
}
export default Tail;
