import React, { ReactNode } from 'react';
type BasePortalCardProps = {
    children?: ReactNode;
    contentBelowCard?: ReactNode;
    borderRadiusPx?: number;
    boxShadow?: string;
    cardSize?: 'small' | 'medium' | 'large';
    backgroundImage?: string;
    backgroundColor?: string;
    className?: string;
};
declare const BasePortalCard: ({ borderRadiusPx, boxShadow, children, contentBelowCard, cardSize, className, backgroundImage, backgroundColor, }: BasePortalCardProps) => React.ReactNode;
export default BasePortalCard;
//# sourceMappingURL=BasePortalCard.d.ts.map