import type { Payload } from '@xyo-network/sdk'; import React from 'react'; import type { PropertyProps } from '../../../property/index.js'; import type { SizeProp } from '../../../shared/index.js'; /** Props for {@link PayloadDataDetails}. */ export type PayloadDataDetailsProps = PropertyProps & { badge?: boolean; payload?: Payload; size?: SizeProp; }; /** Displays payload hash data with actions to view or copy the hash source. */ export declare const PayloadDataDetails: React.FC; //# sourceMappingURL=DataDetails.d.ts.map