import { ReactNode } from 'react';
export type EcosystemCardProps = {
    title: ReactNode;
    titleUrl?: string;
    description: ReactNode;
    image: ReactNode;
};
/**
 * Card layout designed to be used in the EcosystemLayout component.
 */
declare function EcosystemCard(props: EcosystemCardProps): import("react/jsx-runtime").JSX.Element;
export default EcosystemCard;
//# sourceMappingURL=EcosystemCard.d.ts.map