export interface FeatureProps {
    title: string;
    description: string;
    href?: string;
    hrefCaption?: string;
    icon: "wikis" | "chat" | "scales" | "flash";
    className?: string;
}
export declare function Feature({ title, description, icon, href, hrefCaption, className, }: FeatureProps): import("react/jsx-runtime").JSX.Element;
