/**
 * @file Core module index file
 *
 * This file exports the main algorithmic components of the face detection library.
 * These core classes handle the main functionality including:
 * - The main FaceAPI interface
 * - Face detection algorithms
 * - Facial landmark detection
 */
export * from './face-api';
export * from './face-detector';
export * from './landmark-detector';
