/**
 * 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 MintTokensToCheckedInstructionAccounts = {
    mint: PublicKey | Pda;
    token: PublicKey | Pda;
    mintAuthority: Signer;
};
export type MintTokensToCheckedInstructionData = {
    discriminator: number;
    amount: bigint;
    decimals: number;
};
export type MintTokensToCheckedInstructionDataArgs = {
    amount: number | bigint;
    decimals: number;
};
export declare function getMintTokensToCheckedInstructionDataSerializer(): Serializer<MintTokensToCheckedInstructionDataArgs, MintTokensToCheckedInstructionData>;
export type MintTokensToCheckedInstructionArgs = MintTokensToCheckedInstructionDataArgs;
export declare function mintTokensToChecked(context: Pick<Context, 'programs'>, input: MintTokensToCheckedInstructionAccounts & MintTokensToCheckedInstructionArgs): TransactionBuilder;
