import { LinkProps } from 'react-aria-components'; type CardFeatureVariantProps = { variant?: 'background' | 'default'; }; export type CardFeatureProps = LinkProps & CardFeatureVariantProps & { image: string; title: string; subtitle?: string; href: string; isDisabled?: boolean; onClick?: () => void; target?: '_blank' | '_self' | '_parent' | '_top'; size?: 'm' | 'l'; }; export declare const cardFeatureVariants: ({ variant, size, isDisabled, className, }: Partial) => string; export declare const cardFeatureImageVariants: ({ variant, size, className, }: Partial) => string; export {}; //# sourceMappingURL=types.d.ts.map