import type { CardActionsProps } from '@mui/material'; import type { SentinelInstance } from '@xyo-network/sdk'; import React from 'react'; import type { ModuleRenderProps } from '../../../module/index.js'; /** Props for {@link SentinelCardActions}. */ export type SentinelCardActionsProps = ModuleRenderProps & CardActionsProps & { onReport?: (mod?: SentinelInstance) => void; }; /** Card actions that include a Report button for the sentinel. */ export declare const SentinelCardActions: React.FC; //# sourceMappingURL=CardActions.d.ts.map