import { Request } from '../Request';
import { IRestResponse } from 'typed-rest-client/RestClient';
import { Rules } from "./Rules";
/** @deprecated This endpoint is deprecated and will be removed in a future release. */
export declare class GetRulesRequest implements Request<Rules> {
    private readonly domainId;
    constructor(domainId: string);
    execute(apiToken: string): Promise<IRestResponse<Rules>>;
}
