import type { CatalogSearchHit } from "@voyant-travel/catalog-react"; export interface CharterCatalogCardProps { hit: CatalogSearchHit; onClick?: (hit: CatalogSearchHit) => void; className?: string; } /** * Search-result card for a charter (yacht) hit. Reads: * `name`, `yachtName`, `lengthMeters`, `cabins`, `weeklyRateFromCents`, * `currency`, `homePort`, `tags`. */ export declare function CharterCatalogCard({ hit, onClick, className }: CharterCatalogCardProps): import("react").JSX.Element;