export declare const MIN_UINT64 = 0n; export declare const MAX_UINT64 = 18446744073709551615n; export declare const MAX_UINT8 = 255; export declare const MIN_UINT8 = 0; export declare const DEFAULT_STACK_ELEM = 0n; export declare const MAX_CONCAT_SIZE = 4096; export declare const ALGORAND_MIN_TX_FEE = 1000; export declare const ALGORAND_ACCOUNT_MIN_BALANCE = 1000000; export declare const APPLICATION_BASE_FEE = 100000; export declare const ASSET_CREATION_FEE = 100000; export declare const SSC_KEY_BYTE_SLICE = 25000; export declare const SSC_VALUE_UINT = 3500; export declare const SSC_VALUE_BYTES = 25000; export declare const LogicSigMaxCost = 20000; export declare const MaxAppProgramCost = 700; export declare const LogicSigMaxSize = 1000; export declare const MaxAppProgramLen = 1024; export declare const MAX_ALGORAND_ACCOUNT_ASSETS = 1000; export declare const MAX_ALGORAND_ACCOUNT_APPS = 10; export declare const TxnFields: { [key: number]: { [key: string]: any; }; }; export declare const TxFieldDefaults: { [key: string]: any; }; export declare const AssetParamMap: { [key: string]: string; }; export declare const reDigit: RegExp; /** is Base64 regex * * ^ # Start of input * ([0-9a-zA-Z+/]{4})* # Groups of 4 valid characters decode * # to 24 bits of data for each group * ( # Either ending with: * ([0-9a-zA-Z+/]{2}==) # two valid characters followed by == * | # , or * ([0-9a-zA-Z+/]{3}=) # three valid characters followed by = * )? # , or nothing * $ # End of input */ export declare const reBase64: RegExp; export declare const reBase32: RegExp; export declare const GlobalFields: { [key: number]: { [key: string]: any; }; }; export declare const OpGasCost: { [key: number]: { [key: string]: number; }; };