import type { ContextExState } from '@ariestools/sdk-react/shared'; import type { ModuleError, Payload } from '@xyo-network/sdk'; import type { Dispatch, SetStateAction } from 'react'; /** Context state for HURI/payload resolution in embed plugins. */ export type ResolvePayloadState = ContextExState<{ huri?: string; huriError?: ModuleError; huriPayload?: string | Payload; notFound?: boolean; payload?: Payload; refreshHuri?: () => void; setPayload?: Dispatch>; }>; //# sourceMappingURL=State.d.ts.map