import type { CardProps } from '@mui/material'; import type { Payload, SentinelInstance } from '@xyo-network/sdk'; import React from 'react'; import type { ModuleRenderProps } from '../../../module/index.js'; /** Props for {@link SentinelCard}. */ export type SentinelCardProps = CardProps & ModuleRenderProps & { inPayloads?: Payload[]; }; /** Card UI that reports from a sentinel and shows the latest report payload. */ export declare const SentinelCard: React.FC; //# sourceMappingURL=Card.d.ts.map