import { type FC } from "react"; export type ActionType = "information" | "contact" | "lesson" | "calculation" | "measurement"; export type Props = { type: ActionType; /** * The icon for a **measurement** action, which every measurement carries — * it tells the patient what to measure. The other four types have fixed * icons, so this is ignored for them rather than being theirs to override. * A measurement with no usable icon falls back to a neutral placeholder. */ iconUrl?: string | null; /** @default 20 */ size?: number; }; export declare const ActionIcon: FC;