import { ReactNode } from 'react';
type WaitForDependenciesProps = {
    children: ReactNode;
    ErrorContent?: ReactNode;
    hasDependencyProps?: boolean[];
    LoadingContent?: ReactNode;
    loadingProps?: boolean[];
};
export declare const WaitForDependencies: ({ children, ErrorContent, LoadingContent, loadingProps, hasDependencyProps, }: WaitForDependenciesProps) => {} | null | undefined;
export {};
