declare const IncomingInternalEvents: { readonly UI_HEIGHT_CHANGED: "ui:height.changed"; readonly CRYPTO_PAYMENT_INCOMING_TRANSACTION: "crypto-payment:incoming-transaction"; readonly CRYPTO_CHAIN_SWITCH: "crypto-payment:chain-switch"; }; type IncomingInternalEvents = (typeof IncomingInternalEvents)[keyof typeof IncomingInternalEvents]; declare const OutgoingInternalEvents: { readonly PARAMS_UPDATE: "params-update"; readonly CRYPTO_PAYMENT_USER_ACCEPTED: "crypto-payment:user-accepted"; readonly CRYPTO_PAYMENT_USER_REJECTED: "crypto-payment:user-rejected"; }; type OutgoingInternalEvents = (typeof OutgoingInternalEvents)[keyof typeof OutgoingInternalEvents]; declare const CrossmintInternalEvents: { readonly PARAMS_UPDATE: "params-update"; readonly CRYPTO_PAYMENT_USER_ACCEPTED: "crypto-payment:user-accepted"; readonly CRYPTO_PAYMENT_USER_REJECTED: "crypto-payment:user-rejected"; readonly UI_HEIGHT_CHANGED: "ui:height.changed"; readonly CRYPTO_PAYMENT_INCOMING_TRANSACTION: "crypto-payment:incoming-transaction"; readonly CRYPTO_CHAIN_SWITCH: "crypto-payment:chain-switch"; }; type CrossmintInternalEvents = (typeof CrossmintInternalEvents)[keyof typeof CrossmintInternalEvents]; export { CrossmintInternalEvents, IncomingInternalEvents, OutgoingInternalEvents };