import { TransactionInstruction } from '@solana/web3.js';
import { ThawInstructionParams } from './types';
/**
 * Creates a thaw instruction for the allowlist program
 *
 * This instruction thaws a user's token account if they are allowed on either
 * the public allowlist or the private allowlist for the specific mint.
 *
 * @param params Parameters for creating the thaw instruction
 * @returns A TransactionInstruction that can be added to a transaction
 */
export declare function createThawInstruction(params: ThawInstructionParams): TransactionInstruction;
//# sourceMappingURL=instructions.d.ts.map