import { AbstractGenericAPI } from '@3kles/3kles-corebe';
import { ILdapParameter } from './ldap.interface';
import { Client, Change } from 'ldapts';
export declare class LdapAPI extends AbstractGenericAPI {
    protected client: Client;
    constructor();
    buildRequest(params: any, inputRequest?: any, data?: any): any;
    execute(options: ILdapParameter): Promise<any>;
    protected parseChange(options: any): Change[];
}
