import { MarketingCardTone } from "./MarketingCard.js"; import * as React from "react"; import * as react_jsx_runtime34 from "react/jsx-runtime"; import { VariantProps } from "class-variance-authority"; import * as class_variance_authority_types5 from "class-variance-authority/types"; //#region src/components/marketing/MarketingIconCard.d.ts type IconComponent = React.ComponentType<{ className?: string; size?: number; }>; declare const layoutVariants: (props?: ({ variant?: "iconFirst" | "listing" | "support" | null | undefined; } & class_variance_authority_types5.ClassProp) | undefined) => string; type MarketingIconCardVariant = VariantProps['variant']; interface MarketingIconCardProps { icon: IconComponent; title: React.ReactNode; description?: React.ReactNode; tone?: MarketingCardTone; iconClassName?: string; headerAction?: React.ReactNode; variant?: MarketingIconCardVariant; className?: string; } declare function MarketingIconCard({ icon: Icon, title, description, tone, iconClassName, headerAction, variant, className }: MarketingIconCardProps): react_jsx_runtime34.JSX.Element; //#endregion export { MarketingIconCard }; //# sourceMappingURL=MarketingIconCard.d.ts.map