import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import type { BoundWitness, Payload, Signed } from '@xyo-network/sdk'; import type { PropsWithChildren } from 'react'; import React from 'react'; /** * Props for {@link BlockDetails}. * @deprecated use from @xyo-network/react-default-plugin instead */ export interface BlockDetailsProps extends PropsWithChildren, FlexBoxProps { block?: Signed; paper?: boolean; payloads?: Payload[]; } /** * Composite details view for a bound-witness block and its payloads. * @deprecated use from @xyo-network/react-default-plugin instead */ declare const BlockDetails: { ({ ref, paper, block, payloads, children, ...props }: BlockDetailsProps & { ref?: React.RefObject; }): React.JSX.Element; displayName: string; }; export { BlockDetails }; //# sourceMappingURL=Details.d.ts.map