/** Quack protocol version targeted by this SDK. */ export declare const QUACK_VERSION = 1; /** Default TCP port used for Quack HTTP transport. */ export declare const DEFAULT_QUACK_PORT = 9494; /** HTTP endpoint used by the Quack server. */ export declare const QUACK_ENDPOINT = "/quack"; /** MIME type used for Quack binary request and response bodies. */ export declare const DUCKDB_MIME_TYPE = "application/duckdb"; /** DuckDB BinarySerializer field-id marker indicating end of object. */ export declare const FIELD_END = 65535; /** DuckDB optional-index sentinel used when an optional index is absent. */ export declare const OPTIONAL_INDEX_INVALID = 18446744073709551615n;