import React from 'react';
export type GoalsV3Props = {
    entityId: string;
    svgComponentMap: Record<string, React.FC<React.SVGProps<SVGSVGElement>>>;
};
export type GoalsV3CardProps = {
    countSql?: string;
    title: string;
    summary: string;
    link: string;
    svgIconComponent?: React.FC<React.SVGProps<SVGSVGElement>>;
};
declare const GoalsV3: ({ entityId, svgComponentMap, }: GoalsV3Props) => React.ReactNode;
export default GoalsV3;
//# sourceMappingURL=GoalsV3.d.ts.map