import type * as React from "react"; export type SuggestionCardProps = { /** Icon element rendered at the top of the card */ icon: React.ReactNode; /** Primary label text */ title: string; /** Secondary descriptive text */ subtitle: string; } & React.ComponentProps<"button">; export declare function SuggestionCard({ className, icon, title, subtitle, style, ...props }: SuggestionCardProps): React.JSX.Element; export type SuggestionCardSkeletonProps = React.ComponentProps<"div">; export declare function SuggestionCardSkeleton({ className, style, ...props }: SuggestionCardSkeletonProps): React.JSX.Element; //# sourceMappingURL=suggestion-card.d.ts.map