/**
 * Extractor module for various data extraction operations
 * @module extractors
 */
/**
 * Import CIN extraction utilities
 */
import { extractCINMetadata } from './cin';
/**
 * Collection of all extractor namespaces
 */
export declare const extractors: {
    cin: {
        extract: typeof extractCINMetadata;
    };
};
/**
 * Default export providing access to all extractor functions
 * @default
 */
export default extractors;
/**
 * Direct exports of CIN extraction functions for granular imports
 */
export { extractCINMetadata };
