/**
 * This code was AUTOGENERATED using the kinobi library.
 * Please DO NOT EDIT THIS FILE, instead use visitors
 * to add features, then rerun kinobi to update it.
 *
 * @see https://github.com/metaplex-foundation/kinobi
 */
import { Context, Pda, PublicKey, Signer, TransactionBuilder } from '@metaplex-foundation/umi';
import { Serializer } from '@metaplex-foundation/umi/serializers';
export type ThawTokenInstructionAccounts = {
    account: PublicKey | Pda;
    mint: PublicKey | Pda;
    owner: Signer;
};
export type ThawTokenInstructionData = {
    discriminator: number;
};
export type ThawTokenInstructionDataArgs = {};
export declare function getThawTokenInstructionDataSerializer(): Serializer<ThawTokenInstructionDataArgs, ThawTokenInstructionData>;
export declare function thawToken(context: Pick<Context, 'programs'>, input: ThawTokenInstructionAccounts): TransactionBuilder;
