export default WaitForDependencies;
declare function WaitForDependencies({ children, ErrorContent, LoadingContent, loadingProps, hasDependencyProps }: {
    children: any;
    ErrorContent: any;
    LoadingContent: any;
    loadingProps: any;
    hasDependencyProps: any;
}): any;
declare namespace WaitForDependencies {
    namespace defaultProps {
        const hasDependencyProps: never[];
        const loadingProps: never[];
    }
    namespace propTypes {
        export const children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
        export const ErrorContent: PropTypes.Requireable<PropTypes.ReactNodeLike>;
        const hasDependencyProps_1: PropTypes.Requireable<any[]>;
        export { hasDependencyProps_1 as hasDependencyProps };
        export const LoadingContent: PropTypes.Requireable<PropTypes.ReactNodeLike>;
        const loadingProps_1: PropTypes.Requireable<any[]>;
        export { loadingProps_1 as loadingProps };
    }
}
import PropTypes from "prop-types";
