export declare const OP: { readonly AutomatonSync: 26; readonly SyncRequest: 80; readonly GroupKeySync: 81; readonly PushSnapshot: 112; readonly RequestPrice: 113; readonly FulfillPrice: 114; readonly EvtOperatorMirrored: 128; readonly EvtGroupKeyCached: 129; readonly EvtSnapshotPushed: 130; readonly EvtPricePulled: 131; readonly EvtPaused: 133; readonly EvtUnpaused: 134; readonly EvtConfigUpdated: 135; readonly EvtFeesWithdrawn: 136; readonly EvtCodeUpgradeProposed: 137; readonly EvtCodeUpgradeExecuted: 138; readonly EvtCodeUpgradeCancelled: 139; readonly EvtRewardClaimed: 140; readonly EvtOperatorPruned: 141; readonly EvtSyncAtlasRequested: 142; readonly Pause: 160; readonly Unpause: 161; readonly UpdateConfig: 162; readonly WithdrawFees: 163; readonly SyncAtlas: 164; readonly ProposeCodeUpgrade: 165; readonly ExecuteCodeUpgrade: 166; readonly CancelCodeUpgrade: 167; readonly ClaimReward: 168; readonly GcOperator: 169; }; export declare const ERR: { readonly NotOwner: 100; readonly OperationPaused: 101; readonly NotPaused: 102; readonly AlreadyPaused: 103; readonly BadSchemaVersion: 110; readonly GroupIdNotSupported: 130; readonly InvalidThresholdConfig: 131; readonly OperatorNotFound: 140; readonly OperatorNotActive: 141; readonly GroupEpochNotMonotonic: 142; readonly GroupKeyChangedAtEpoch: 143; readonly WrongDeploymentBinding: 144; readonly InvalidBlsSignature: 161; readonly InvalidG1Point: 162; readonly GroupKeyNotSet: 180; readonly StaleSnapshot: 181; readonly BadTimestampDrift: 182; readonly BadMerkleProof: 183; readonly FeedIdOutOfRange: 186; readonly FreshNotFresher: 187; readonly NoUnclaimedReward: 188; readonly InvalidOperatorBps: 189; readonly InvalidMaxInactivity: 190; readonly InvalidMaxPushDrift: 191; readonly InvalidMinStorageReserve: 192; readonly OperatorStillActive: 193; readonly OperatorHasUnclaimed: 194; readonly NotForgeton: 200; readonly NotAtlas: 201; readonly UpgradeEtaTooSoon: 225; readonly UpgradeNotReady: 226; readonly UpgradeAlreadyPending: 227; readonly NoPendingUpgrade: 228; readonly EmptyCodeCell: 229; readonly InsufficientValue: 240; readonly ReserveInvariant: 241; readonly AmountExceedsAccumulated: 242; readonly BadWithdrawTarget: 243; readonly WrongWorkchain: 333; readonly UnknownOpcode: 65535; }; export declare const PHOEBE_STORAGE_VERSION = 1; export declare const PHOEBE_CONFIG_BLOB_VERSION = 2; export declare const OPERATOR_BPS_DENOM = 10000; export declare const DEFAULT_OPERATOR_BPS = 7500; export declare const MAX_MAX_INACTIVITY_SECONDS: number; export declare const MAX_MAX_PUSH_DRIFT_SECONDS: number; export declare const MAX_MIN_STORAGE_RESERVE_NANO = 10000000000n; export declare const BLS_PUBKEY_BYTES = 48; export declare const BLS_SIG_BYTES = 96; export declare const BLS_PUBKEY_BITS = 384; export declare const BLS_SIG_BITS = 768; export declare const BLS_DST_G2_POP = "BLS_SIG_BLS12381G2_XMD:SHA-256_SSWU_RO_POP_"; export declare const DEFAULT_GROUP_ID = 0; export declare const MIN_UPGRADE_DELAY_SECONDS: number; export declare const MAX_FEED_COUNT = 256; export declare const TREE_DEPTH = 8; export declare const CAUSE_FIRST_SYNC = 1; export declare const CAUSE_ACTIVATION_CHANGE = 2; export declare const OP_AUTOMATON_SYNC: 26; export declare const OP_SYNC_REQUEST: 80; export declare const OP_GROUP_KEY_SYNC: 81; export declare const OP_PUSH_SNAPSHOT: 112; export declare const OP_REQUEST_PRICE: 113; export declare const OP_FULFILL_PRICE: 114; export declare const OP_EVT_OPERATOR_MIRRORED: 128; export declare const OP_EVT_GROUP_KEY_CACHED: 129; export declare const OP_EVT_SNAPSHOT_PUSHED: 130; export declare const OP_EVT_PRICE_PULLED: 131; export declare const OP_EVT_PAUSED: 133; export declare const OP_EVT_UNPAUSED: 134; export declare const OP_EVT_CONFIG_UPDATED: 135; export declare const OP_EVT_FEES_WITHDRAWN: 136; export declare const OP_EVT_CODE_UPGRADE_PROPOSED: 137; export declare const OP_EVT_CODE_UPGRADE_EXECUTED: 138; export declare const OP_EVT_CODE_UPGRADE_CANCELLED: 139; export declare const OP_EVT_REWARD_CLAIMED: 140; export declare const OP_EVT_OPERATOR_PRUNED: 141; export declare const OP_EVT_SYNC_ATLAS_REQUESTED: 142; export declare const OP_PAUSE: 160; export declare const OP_UNPAUSE: 161; export declare const OP_UPDATE_CONFIG: 162; export declare const OP_WITHDRAW_FEES: 163; export declare const OP_SYNC_ATLAS: 164; export declare const OP_PROPOSE_CODE_UPGRADE: 165; export declare const OP_EXECUTE_CODE_UPGRADE: 166; export declare const OP_CANCEL_CODE_UPGRADE: 167; export declare const OP_CLAIM_REWARD: 168; export declare const OP_GC_OPERATOR: 169; export declare const ERR_NOT_OWNER: 100; export declare const ERR_OPERATION_PAUSED: 101; export declare const ERR_NOT_PAUSED: 102; export declare const ERR_ALREADY_PAUSED: 103; export declare const ERR_BAD_SCHEMA_VERSION: 110; export declare const ERR_GROUP_ID_NOT_SUPPORTED: 130; export declare const ERR_INVALID_THRESHOLD_CONFIG: 131; export declare const ERR_OPERATOR_NOT_FOUND: 140; export declare const ERR_OPERATOR_NOT_ACTIVE: 141; export declare const ERR_GROUP_EPOCH_NOT_MONOTONIC: 142; export declare const ERR_GROUP_KEY_CHANGED_AT_EPOCH: 143; export declare const ERR_WRONG_DEPLOYMENT_BINDING: 144; export declare const ERR_WRONG_WORKCHAIN: 333; export declare const ERR_INVALID_BLS_SIGNATURE: 161; export declare const ERR_INVALID_G1_POINT: 162; export declare const ERR_GROUP_KEY_NOT_SET: 180; export declare const ERR_STALE_SNAPSHOT: 181; export declare const ERR_BAD_TIMESTAMP_DRIFT: 182; export declare const ERR_BAD_MERKLE_PROOF: 183; export declare const ERR_FEED_ID_OUT_OF_RANGE: 186; export declare const ERR_FRESH_NOT_FRESHER: 187; export declare const ERR_NO_UNCLAIMED_REWARD: 188; export declare const ERR_INVALID_OPERATOR_BPS: 189; export declare const ERR_INVALID_MAX_INACTIVITY: 190; export declare const ERR_INVALID_MAX_PUSH_DRIFT: 191; export declare const ERR_INVALID_MIN_STORAGE_RESERVE: 192; export declare const ERR_OPERATOR_STILL_ACTIVE: 193; export declare const ERR_OPERATOR_HAS_UNCLAIMED: 194; export declare const ERR_NOT_FORGETON: 200; export declare const ERR_NOT_ATLAS: 201; export declare const ERR_UPGRADE_ETA_TOO_SOON: 225; export declare const ERR_UPGRADE_NOT_READY: 226; export declare const ERR_UPGRADE_ALREADY_PENDING: 227; export declare const ERR_NO_PENDING_UPGRADE: 228; export declare const ERR_EMPTY_CODE_CELL: 229; export declare const ERR_INSUFFICIENT_VALUE: 240; export declare const ERR_RESERVE_INVARIANT: 241; export declare const ERR_AMOUNT_EXCEEDS_ACCUMULATED: 242; export declare const ERR_BAD_WITHDRAW_TARGET: 243; export declare const ERR_UNKNOWN_OPCODE: 65535;