/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface ResultCardProps extends Omit, "title"> { /** The result's name. */ title: string; company?: string; location?: string; salary?: string; /** Small chips; `remote` and `source` are the two tints. */ badges?: { label: string; variant?: "remote" | "source"; }[]; /** The highlighted result, announced with `aria-current`. */ active?: boolean; /** Makes the card a button. */ onSelect?: () => void; className?: string; } /** * One result in an instrument's results panel; a button when selectable, an article when not. * * @example * panTo(id)} /> */ export declare const ResultCard: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=ResultCard.d.ts.map