import type { AuthStrategy, AuthResult } from "@cesteral/shared"; import type { Logger } from "pino"; export declare class TtdTokenAuthStrategy implements AuthStrategy { private readonly graphqlUrl; private readonly logger?; constructor(graphqlUrl: string, logger?: Logger | undefined); verify(headers: Record): Promise; getCredentialFingerprint(headers: Record): Promise; } //# sourceMappingURL=ttd-auth-strategy.d.ts.map