import { type Hex } from "../encoding/hex.js"; type GetInitiBytecodeWithSaltOptions = { bytecode: string; encodedArgs: Hex | Uint8Array; salt?: string; }; /** * Generates the initialization bytecode with salt for a contract deployment. * @param options - The options for generating the initialization bytecode. * @returns The initialization bytecode with salt. * @example * ```ts * import { getInitBytecodeWithSalt } from "thirdweb/utils"; * const initBytecodeWithSalt = getInitBytecodeWithSalt({ * bytecode, * encodedArgs, * salt, * }); * ``` * @utils */ export declare function getInitBytecodeWithSalt(options: GetInitiBytecodeWithSaltOptions): Hex; export {}; //# sourceMappingURL=get-init-bytecode-with-salt.d.ts.map