import { BytesLike } from "ethers";
import { SignerWithAddress } from "@nomicfoundation/hardhat-ethers/signers";
import { VeBetterPassport } from "../../typechain-types";
interface SignalingFixture {
    veBetterPassport: VeBetterPassport;
    owner: SignerWithAddress;
    otherAccounts: SignerWithAddress[];
    x2EarnApps: any;
    appId: BytesLike;
    appAdmin: SignerWithAddress;
    regularSignaler: SignerWithAddress;
}
export declare function setupSignalingFixture(): Promise<SignalingFixture>;
export {};
