import { Component, ComponentProps, JSX, ParentProps } from "solid-js"; export interface CardTheme { root: CardRootTheme; img: CardImageTheme; } export interface CardRootTheme { base: string; children: string; horizontal: { off: string; on: string; }; href: string; title: string; body: string; } export interface CardImageTheme { base: string; horizontal: { off: string; on: string; }; } export interface CardProps extends ParentProps> { horizontal?: boolean; href?: string; imgAlt?: string; imgSrc?: string; } export declare const CardComponent: (p: CardProps) => JSX.Element; type TitleProps = ParentProps>; type DivProps = ParentProps>; export declare const Card: ((p: CardProps) => JSX.Element) & { Title: Component; Body: Component; }; export {};