import EfficientNetModel from "./EfficientnetModel";
import { EfficientNetCheckPoint } from "./EfficientNetCheckPoint";
import { EfficientNetLabelLanguage } from "./EfficientNetLanguageProvider";
interface EfficientNetCheckPointFactoryOptions {
    localModelRootDirectory?: string;
    locale?: EfficientNetLabelLanguage;
}
export default class EfficientNetCheckPointFactory {
    static create(checkPoint: EfficientNetCheckPoint, options?: EfficientNetCheckPointFactoryOptions): Promise<EfficientNetModel>;
}
export {};
