import type { CardHeaderProps } from '@mui/material'; import type { Payload } from '@xyo-network/sdk'; import type { ReactNode } from 'react'; import React from 'react'; /** Props for {@link BoundWitnessCardHeader}. */ export interface BoundWitnessCardHeaderProps extends CardHeaderProps { active?: boolean; activeBgColor?: boolean; additionalActions?: ReactNode; hideJSONButton?: boolean; hidePreviousHash?: boolean; hideValidation?: boolean; payload?: Payload; } /** Card header showing bound witness hash, identicon, and actions. */ export declare const BoundWitnessCardHeader: { ({ ref, active, activeBgColor, additionalActions, hideJSONButton, hidePreviousHash, hideValidation, payload, ...props }: BoundWitnessCardHeaderProps & { ref?: React.Ref; }): React.JSX.Element; displayName: string; }; //# sourceMappingURL=CardHeader.d.ts.map