import { EnrollProps, EstimateAgeProps, FaceLoginProps, PredictProps } from './face.types';
export interface Face {
    faceLogin: (props: FaceLoginProps) => Promise<unknown>;
    predict: (props: PredictProps) => Promise<unknown>;
    predictWithStatus: (props: PredictProps) => Promise<unknown>;
    predictConfirmUser: (props: PredictProps) => Promise<unknown>;
    predictDeleteUser: (props: PredictProps) => Promise<unknown>;
    estimateAge: (props: EstimateAgeProps) => Promise<unknown>;
    enroll: (props: EnrollProps) => Promise<unknown>;
}
