import { AbstractPredictionsProvider } from './AbstractPredictionsProvider'; import { IdentifyLabelsInput, IdentifyEntitiesInput, IdentifyTextInput, IdentifyTextOutput, IdentifyLabelsOutput, IdentifyEntitiesOutput } from '../Predictions'; export declare abstract class AbstractIdentifyPredictionsProvider extends AbstractPredictionsProvider { getCategory(): string; identify(input: IdentifyTextInput | IdentifyLabelsInput | IdentifyEntitiesInput): Promise; protected identifyText(input: IdentifyTextInput): Promise; protected identifyLabels(input: IdentifyLabelsInput): Promise; protected identifyEntities(input: IdentifyEntitiesInput): Promise; }