import { IconProp } from "@fortawesome/fontawesome-svg-core"; import type { PropsFor } from "../../types.js"; export type CardLogoProps = PropsFor<"div", { /** Font Awesome icon reference (or string if using library) */ icon?: IconProp; /** Image URL */ imageUrl?: string; }>; declare const CardLogo: import("react").ForwardRefExoticComponent>; export default CardLogo;