import { RouteExecutionStatus } from "../../stores/routes/types.js"; import { RouteExtended } from "@lifi/sdk"; import { JSX } from "react"; //#region src/components/ExecutionStatusCard/StatusIcon.d.ts interface StatusIconProps { route: RouteExtended; status: RouteExecutionStatus; } /** * The animated status icon. Each state animates in its own way; they all * animate out the same way. */ declare function StatusIcon({ route, status }: StatusIconProps): JSX.Element; //#endregion export { StatusIcon }; //# sourceMappingURL=StatusIcon.d.ts.map