import React from "react"; import { type IconProps } from "../Icon/Icon"; import { type ImageProps } from "../Image/Image"; import { type CardButtonProps } from "../Internal/InteractiveCard/InteractiveCard"; export type SplashCardMediaProps = { title: string; description?: string; variant?: "standard" | "bold"; isPressed?: boolean; hasShadow?: boolean; imageProps: Pick; iconProps?: IconProps; } & CardButtonProps; export declare function SplashCardMedia({ isPressed, disabled, title, description, variant, iconProps, imageProps, hasShadow, ...rest }: SplashCardMediaProps): React.ReactElement;