import type { CardContentProps } 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 SentinelCardContent}. */ export type SentinelCardContentProps = ModuleRenderProps & CardContentProps & { report?: Payload[]; }; /** Card content that JSON-views the latest sentinel report payloads. */ export declare const SentinelCardContent: React.FC; //# sourceMappingURL=CardContent.d.ts.map