import AbstractAuthProvider from './AbstractAuthProvider';
/**
 * Cookie authentication provider.
 *
 * Providing an instance of this class means that the client thinks that it is already
 * authenticated by the cookies it sent on the transport level.
 */
declare class CookieAuthProvider extends AbstractAuthProvider {
    get isTransportLevel(): boolean;
    /**
     * Creates a new instance of the cookie auth provider.
     */
    constructor();
}
export default CookieAuthProvider;
