import { FaceAuthService } from "./face-auth.service";
export declare class FaceController {
    private readonly faceService;
    constructor(faceService: FaceAuthService);
    uploadFace(file: Express.Multer.File): Promise<{
        status: string;
        message: string;
        faceId?: undefined;
        key?: undefined;
    } | {
        message: string;
        faceId: string;
        key: string;
        status?: undefined;
    }>;
    FaceId(key: string): Promise<{
        faceID: string;
        message: string;
        error?: undefined;
    } | {
        message: string;
        faceID?: undefined;
        error?: undefined;
    } | {
        message: string;
        error: any;
        faceID?: undefined;
    }>;
    getDocs(key: string): Promise<any>;
}
