import type { CardContentProps } from '@mui/material'; import type { Payload } from '@xyo-network/sdk'; import React from 'react'; /** Props for {@link BoundWitnessCardContent}. */ export interface BoundWitnessCardContentProps extends CardContentProps { active?: boolean; payload?: Payload; } /** Card content summarizing payload schemas and signer addresses. */ export declare const BoundWitnessCardContent: { ({ ref, payload, active, ...props }: BoundWitnessCardContentProps & { ref?: React.Ref; }): React.JSX.Element; displayName: string; }; //# sourceMappingURL=CardContent.d.ts.map