import { HTMLAttributes } from 'react';
export type FeaturedToolCardProps = {
    id: string;
    name: string;
    description: string;
    type: string;
    date?: string;
    toolDetailPageURL?: string;
    url?: string;
};
export declare function FeaturedToolCard({ id, name, description, type, toolDetailPageURL, date, url, ...domProps }: FeaturedToolCardProps & HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=FeaturedToolCard.d.ts.map