import React from 'react';
interface BeeKeeperProps {
    active: boolean;
    children: React.ReactNode;
}
declare const BeeKeeper: React.FC<BeeKeeperProps>;
export default BeeKeeper;
