import { AgoraHttpAuthHeadersProvider } from './type'; export declare const getAuthorization: (token: string) => string; export declare class AgoraHttpAuthHeadersProviderImpl implements AgoraHttpAuthHeadersProvider { private _headers; constructor(auth: { userId: string; token: string; }); clone(): AgoraHttpAuthHeadersProvider; getHeaders(): Readonly>; setHeaders(headers: Record): void; putHeaders(headers: Record): void; }