import React from "react"; import { type CardButtonProps, type CardProps } from "../Internal/InteractiveCard/InteractiveCard"; type BaseProps = { title: string; description?: string; isPressed?: boolean; hasShadow?: boolean; }; type SplashCardProps = BaseProps & Omit & CardButtonProps; export declare function SplashCard({ isPressed, disabled, title, description, iconProps, hasShadow, ...rest }: SplashCardProps): React.ReactElement; export {};