import { StoreSchemaType } from '@ui-schema/ui-schema/CommonTypings'; import { List } from 'immutable'; import { StoreKeys } from '@ui-schema/ui-schema'; export interface OptionValueSchema { value: V; text: string; fallback: string; context: any; schema: StoreSchemaType | undefined; } export declare const useOptionsFromSchema: (storeKeys: StoreKeys, schema: StoreSchemaType | undefined) => { enumValues: List | undefined; valueSchemas: List | undefined; };