import { AttributeByGender, Fifa, PersonAttribute } from '../interfaces'; declare type PersonAttributesByGender = { [key: string]: AttributeByGender; }; export declare class PersonExtractor { private config; constructor(targetFifa: Fifa); getAttributes(inputFolder: string): Promise; getAttribute(inputFolder: string, attribute: PersonAttribute): Promise; private getGroupedAttribute; private groupedAttribute; private filterAttribute; private readTable; private filterByHeadClassFn; private filterByGenderFn; private reduceFn; private mergeTables; } export {};