import { PropsWithChildren, ReactElement } from 'react';
/**
 * If loading is true this returns a loading spinner, otherwise it returns its children.
 */
export declare const ComponentLoadingWrapper: (props: PropsWithChildren<{
    loading?: boolean;
    saving?: boolean;
    className: string | undefined;
}>) => ReactElement;
