import type { Codec } from 'protons-runtime'; import type { Uint8ArrayList } from 'uint8arraylist'; export interface GetOptions { } export declare namespace GetOptions { const codec: () => Codec; const encode: (obj: Partial) => Uint8Array; const decode: (buf: Uint8Array | Uint8ArrayList) => GetOptions; } export interface GetRequest { user: string; } export declare namespace GetRequest { const codec: () => Codec; const encode: (obj: Partial) => Uint8Array; const decode: (buf: Uint8Array | Uint8ArrayList) => GetRequest; } export interface GetResponse { authorization: string; } export declare namespace GetResponse { const codec: () => Codec; const encode: (obj: Partial) => Uint8Array; const decode: (buf: Uint8Array | Uint8ArrayList) => GetResponse; } //# sourceMappingURL=authorization.d.ts.map