import { IDataParser, IFixture, IParserOptions } from './interface';
export declare class Parser implements IDataParser {
    private parsers;
    private options;
    constructor(options?: IParserOptions);
    /**
     * @param {object | null | any} data
     * @param {IFixture} fixture
     * @param entities
     * @return {any}
     */
    parse(data: object | null | any, fixture: IFixture, entities: any): any;
}
