import { UIStoreInternalsType, UIStoreType } from '@ui-schema/react/UIStore'; import { StoreKeys } from '@ui-schema/ui-schema/ValueStore'; export type ExtractValueOverwriteProps = { showValidity?: boolean; }; export declare function getValues(storeKeys: StoreKeys, store: S): { value: any; internalValue: UIStoreInternalsType | undefined; }; /** * @deprecated use `getValues` instead */ export declare const doExtractValues: typeof getValues;