import { ASRequest } from './entity/ASRequest';
import { ASResponse } from './entity/ASResponse';
export declare abstract class RequestsProvider {
    abstract getRequests(callback: (request: ASRequest, answerRequest: (response: ASResponse) => void) => void): void;
}
