import { ReactNode } from 'react';
export type ActionRequiredCardProps = {
    title: ReactNode;
    description: ReactNode;
    actionNode: ReactNode;
    iconType: string;
    count?: number;
    isLoading?: false;
} | {
    isLoading: true;
};
/**
 * The ActionRequiredCard component renders a generic card that represents some action that a user must take to gain
 * download access to a file.
 * @param props
 * @returns
 */
export declare function ActionRequiredCard(props: ActionRequiredCardProps): import("react/jsx-runtime").JSX.Element;
export declare function LoadingActionRequiredCard(): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ActionRequiredCard.d.ts.map