import { PluginFactory } from './core/PluginFactory'; export const getFeatureErrorMessage = PluginFactory.getFeatureErrorMessage; export const isFeatureAvailable = PluginFactory.isFeatureAvailable; export const assertFeatureAvailable = PluginFactory.assertFeatureAvailable; export const getAvailableFeatures = PluginFactory.getAvailableFeatures; export { IMAGE_NOT_FOUND_ERROR, IMAGE_PROCESSING_FAILED_ERROR, INVALID_URI_ERROR, UNSUPPORTED_IMAGE_FORMAT_ERROR, } from './shared/constants'; export { MLKIT_FEATURE_KEYS } from './core/constants'; export { type BoundingBox, type Corner, type ImageProcessingBaseOptions, type ImageProcessingError, type MLKitBaseArguments, type MLKitBaseOptions, type MLKitFeature, type Orientation, } from './core/types'; export * from './features/text-recognition';