import { EnvironmentAddressState } from "../model/EnvironmentAddressState";
export interface GlobalAddressService {
    setEnvironmentAddressState(address: string, environment: string, sequence: number, txn_id: string): Promise<boolean>;
    getEnvironmentAddressState(address: string, environment: string): Promise<EnvironmentAddressState>;
}
//# sourceMappingURL=GlobalAddressService.d.ts.map