import { AllowlistContractFunctions, AllowlistContractEventType } from "@aut-labs/abi-types";
import { SDKContractGenericResponse } from "../models/response";
import SDKBaseContract from "./base.contract";
export declare class AllowlistContract extends SDKBaseContract<AllowlistContractFunctions, AllowlistContractEventType> {
    addToAllowlist(address: string): Promise<SDKContractGenericResponse<void>>;
}
