export interface MetadataServiceOptions {
    prependUnicode: boolean;
    startUnicode: number;
}
export interface FileMetadata {
    path: string;
    name: string;
    unicode: string[] | string;
    renamed: boolean;
}
declare function getMetadataService(options?: Partial<MetadataServiceOptions>): (file: string, cb: (error: Error | null, metadata?: FileMetadata) => void) => void;
export { getMetadataService };
