import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface TransferOwnershipArgs {
    newOwner: PublicKey;
}
export interface TransferOwnershipAccounts {
    owner: PublicKey;
    userState: PublicKey;
}
export declare const layout: any;
export declare function transferOwnership(args: TransferOwnershipArgs, accounts: TransferOwnershipAccounts, programId?: PublicKey): TransactionInstruction;
