import { IExec } from 'iexec'; /** * Checks if a contract at the given address contains specific function selectors in its bytecode. * * @param iexec - The IExec instance. * @param whitelistAddress - The address of the contract to check. * @returns True if the contract contains the required function selectors; false otherwise. */ export declare const isERC734: (iexec: IExec, whitelistAddress: string) => Promise;