import { ClassList, Component, JSXOutput, PropsOf } from '@builder.io/qwik'; import type { LinkProps } from '@builder.io/qwik-city'; type CardTheme = { root?: ClassList; image?: ClassList; content?: ClassList; }; type CardProps = PropsOf<'div'> & { horizontal?: boolean; href?: string; tag?: Component | string; imgAlt?: string; imgSrc?: string; imgAs?: JSXOutput; theme?: CardTheme; }; export declare const Card: Component; export {};