import React from 'react';
import { ILoadingState } from './types/loadingState';
declare const LoadinfStateBoundary: <V extends string | unknown>(props: React.PropsWithChildren<ILoadingState<V>>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element;
/**
 *  @deprecated This component has been deprecated and will be removed in the next MAJOR release.
 */
declare const LoadingState: <V extends string | unknown>(props: React.PropsWithChildren<ILoadingState<V>> & {
    ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => ReturnType<typeof LoadinfStateBoundary>;
export { LoadingState };
