import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import type { Payload } from '@xyo-network/sdk'; import React from 'react'; /** Marks a details props type as requiring paper elevation styling. */ export type WithPaper = T & { paper: true; }; /** Marks a details props type as not using paper elevation styling. */ export type WithoutPaper = T & { paper?: false; }; /** Props for {@link PayloadDetails}. */ export type PayloadDetailsProps = FlexBoxProps & { paper?: boolean; payload?: Payload; }; /** Composite payload details view with data, validation, and JSON sections. */ export declare const PayloadDetails: React.FC; //# sourceMappingURL=Details.d.ts.map