import { ValueOf } from '@hubspot/local-dev-lib/types/Utils'; import { ACTION_STATUSES } from '../constants.js'; type ActionStatus = ValueOf; export type StatusIconProps = { status: ActionStatus; }; export declare function StatusIcon({ status }: StatusIconProps): import("react/jsx-runtime").JSX.Element; export declare function getStatusIcon(props: StatusIconProps): React.ReactNode; export {};