import { ChainId } from '..';
import { Wallet } from 'ethers';
export declare const transferDomain: ({ rootDomain, signer, newOwner, chainId, dryRun, }: {
    rootDomain: string;
    signer: Wallet;
    newOwner: string;
    chainId: ChainId;
    dryRun?: boolean | undefined;
}) => Promise<void>;
