import { Operation } from "@honeycomb-protocol/hive-control"; import { UpdateBurnerArgs } from "../generated"; import type { Artist } from "../handler"; import { PublicKey } from "@metaplex-foundation/js"; /** * Create a burner. * @param args - The arguments for creating a burner. * @param brightswitch - The BrightSwitch instance for managing the creation. * @returns An object containing the operation (if applicable) and the burner's public key. */ export declare const updateBurnerIx: (address: PublicKey, params: UpdateBurnerArgs, artist: Artist) => Promise<{ operation: Operation; address: PublicKey; }>; //# sourceMappingURL=updateBurner.d.ts.map