import { type TSchema, type TSchemaOptions } from '../../types/schema.mjs'; import { type TProperties } from '../../types/properties.mjs'; import { type TPickDeferred } from '../../action/pick.mjs'; import { type TState, type TInstantiateType, type TCanInstantiate } from '../instantiate.mjs'; import { type TFromType } from './from_type.mjs'; export type TPickAction extends true ? TFromType : TPickDeferred> = Result; export declare function PickAction(type: Type, indexer: Indexer, options: TSchemaOptions): TPickAction; export type TPickInstantiate, InstantiatedIndexer extends TSchema = TInstantiateType> = TPickAction; export declare function PickInstantiate(context: Context, state: State, type: Type, indexer: Indexer, options: TSchemaOptions): TPickInstantiate;