import { L1ToL2Message } from '@aztec/circuit-types'; import { AztecAddress, Fr } from '@aztec/circuits.js'; /** * Test utility function to craft an L1 to L2 message. * @param selector - The cross chain message selector. * @param contentPreimage - The args after the selector. * @param targetContract - The contract to consume the message. * @param secret - The secret to unlock the message. * @returns The L1 to L2 message. */ export declare const buildL1ToL2Message: (selector: string, contentPreimage: Fr[], targetContract: AztecAddress, secret: Fr) => L1ToL2Message; //# sourceMappingURL=utils.d.ts.map