import type { ContextExState } from '@ariestools/sdk-react/shared'; import type { Dispatch, SetStateAction } from 'react'; /** Context state controlling payload refresh for embed resolution. */ export type RefreshPayloadState = ContextExState<{ onRefresh?: () => void; refreshPayload?: boolean; setRefreshPayload?: Dispatch>; }>; //# sourceMappingURL=State.d.ts.map