import { ReactNode } from 'react';
export type PropertyItem = {
    text: ReactNode;
    icon?: ReactNode;
};
export type InfoItem = {
    text: string;
    icon: ReactNode;
};
export type ResourceCardSize = "md" | "sm";
export type ResourceCardProps = {
    isSelected?: boolean;
    onSelect?: () => void;
    image?: string;
    defaultImage: string;
    title: string;
    propertyItems?: PropertyItem[];
    infoIcons?: InfoItem[];
    size?: ResourceCardSize;
    width?: string;
    onClick?: () => void;
    hasNoButtonOnFocus?: boolean;
};
declare const ResourceCard: React.FunctionComponent<ResourceCardProps>;
export default ResourceCard;
