import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class Verification extends ClientSDK { /** * Create verification * * @remarks * Creates a verification reminder for the document. Users can create verification reminders from different product surfaces. */ addReminder(reminderRequest: components.ReminderRequest, locale?: string | undefined, options?: RequestOptions): Promise; /** * List verifications * * @remarks * Returns the information to be rendered in verification dashboard. Includes information for each document owned by user regarding their verifications. */ list(count?: number | undefined, locale?: string | undefined, options?: RequestOptions): Promise; /** * Update verification * * @remarks * Verify documents to keep the knowledge up to date within customer corpus. */ verify(verifyRequest: components.VerifyRequest, locale?: string | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=verification.d.ts.map