import type { CardActionsProps } from '@mui/material'; import type { WitnessInstance } from '@xyo-network/sdk'; import React from 'react'; import type { ModuleRenderProps } from '../../../module/index.js'; /** Props for {@link WitnessCardActions}. */ export type WitnessCardActionsProps = ModuleRenderProps & CardActionsProps & { onObserve?: (mod?: WitnessInstance) => void; }; /** Card actions for a witness, including an Observe button. */ export declare const WitnessCardActions: React.FC; //# sourceMappingURL=CardActions.d.ts.map