import type { ContextExState } from '@ariestools/sdk-react/shared'; /** Arbitrary props forwarded to an active payload render plugin. */ export type PluginProps = Record; /** Fields stored in plugin props context state. */ export interface PluginPropsStateFields { pluginProps: PluginProps | undefined; } /** Context state for plugin props forwarded to render plugins. */ export type PluginPropsState = ContextExState; //# sourceMappingURL=state.d.ts.map