import { PixelDieType } from "@systemic-games/pixels-core-animation"; /** Constants used across the pixels-core-connect package. */ export declare const Constants: { /** The lowest Maximum Transmission Unit (MTU) value allowed by the BLE standard. */ readonly minMtu: 23; /** The highest Maximum Transmission Unit (MTU) value allowed by the BLE standard. */ readonly maxMtu: 517; /** The default timeout value (in milliseconds) when connecting to a Pixel. */ readonly connectionTimeout: 10000; /** The default timeout value (in milliseconds) for requests made to a Pixel. */ readonly defaultRequestTimeout: 10000; /** The default timeout value (in milliseconds) for waiting on a Pixel to reply. */ readonly ackMessageTimeout: 5000; /** The maximum size of messages send to a Pixel. */ readonly maxMessageSize: 100; /** The maximum byte size for the name of a Pixel. */ readonly maxNameByteSize: 31; /** The maximum byte size for the name of a Pixel in the advertisement data. */ readonly maxAdvertisedNameByteSize: 13; /** Messages and related data structures version number. */ readonly apiVersion: 256; /** Minimum compatible version for the messages and related data structures. */ readonly compatApiVersion: 256; /** Hash for firmware default profile. */ readonly factoryProfileHashes: { [key in PixelDieType]: number; }; }; //# sourceMappingURL=Constants.d.ts.map