/// import type { IncomingMessage, ServerResponse } from 'http'; import type { ServerAuthenticator, VerifyResult, CheckDataResult } from '@sociably/auth'; import type { NoneAuthData, NoneAuthContext } from './types.js'; export declare class NoneServerAuthenticator implements ServerAuthenticator { readonly platform: "webview"; delegateAuthRequest(req: IncomingMessage, res: ServerResponse): Promise; verifyCredential(data: NoneAuthData): Promise>; verifyRefreshment(data: NoneAuthData): Promise>; checkAuthData({ user, thread, }: NoneAuthData): CheckDataResult; } declare const ServerAuthenticatorP: import("@sociably/core/service").ServiceProvider & typeof NoneServerAuthenticator; type ServerAuthenticatorP = NoneServerAuthenticator; export default ServerAuthenticatorP;