import type { WebhookVerifier, VerifyOptions } from './common.js'; export interface TimestampSchemeVerifier extends WebhookVerifier { type: 'timestampSchemeVerifier'; } /** * Timestamp & Scheme Verifier * * Based on Stripe's secure webhook implementation * * @see https://stripe.com/docs/webhooks/signatures */ export declare function timestampSchemeVerifier(options?: VerifyOptions): TimestampSchemeVerifier; export default timestampSchemeVerifier; //# sourceMappingURL=timestampSchemeVerifier.d.ts.map