export declare const DIGEST = "Digest";
export interface Challenge {
    type: 'Digest';
    realm: string;
    nonce: string;
    qop?: string;
    opaque?: string;
    algorithm?: string;
}
export declare const createHeader: (method: string, url: string, username: string, password: string, challenge: Challenge, cnonce?: string) => string;
export declare const createCnonce: () => string;
//# sourceMappingURL=digest.d.ts.map