import { Cookie } from 'cookiejar'; import { IAuthCookie } from '../../types/auth/AuthCookie'; /** * The cookie containing the tokens that are used to authenticate against Twitter. * * @public */ export declare class AuthCookie implements IAuthCookie { auth_token: string; ct0: string; kdt: string; twid: string; /** * @param cookies - The cookie list obtained from the browser. */ constructor(cookies: Cookie[]); /** * @returns the string representation of 'this' object. */ toString(): string; }