import { ReactNode } from 'react'; import { ActionButtonsProps } from '../../action/ActionButtons/types'; import { TagProps } from '../Tag/types'; export declare const cardImageVariants: (props?: ({ orientation?: "vertical" | "horizontal" | null | undefined; variant?: "shadow" | "tonal" | "outline" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const imageContainerVariants: (props?: ({ orientation?: "vertical" | "horizontal" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; type CardVariantProps = { orientation?: 'vertical' | 'horizontal'; variant?: 'shadow' | 'outline'; }; export type CardImageProps = CardVariantProps & { children?: ReactNode; image?: string; title: string; subtitle?: string; description?: string; tags?: TagProps[]; actionButtonsProps?: ActionButtonsProps; }; export {}; //# sourceMappingURL=types.d.ts.map