import * as _ton_ton from '@ton/ton'; import { QueryIdType } from '../types.js'; /** * Implements `destroy` function from SBT Standard. * [Docs](https://github.com/ton-blockchain/TEPs/blob/master/text/0085-sbt-standard.md#3-destroy) * * ```TL-B * destroy#1f04537a query_id:uint64 = InternalMsgBody; * ``` */ declare function createSbtDestroyMessage(params?: { queryId: QueryIdType; }): _ton_ton.Cell; export { createSbtDestroyMessage };