import { type TSchema, type TSchemaOptions } from '../../types/schema.mjs'; import { type TProperties } from '../../types/properties.mjs'; import { type TPartialDeferred } from '../../action/partial.mjs'; import { type TFromType } from './from_type.mjs'; import { type TState, type TInstantiateType, type TCanInstantiate } from '../instantiate.mjs'; export type TPartialAction extends true ? TFromType : TPartialDeferred> = Result; export declare function PartialAction(type: Type, options: TSchemaOptions): TPartialAction; export type TPartialInstantiate> = TPartialAction; export declare function PartialInstantiate(context: Context, state: State, type: Type, options: TSchemaOptions): TPartialInstantiate;