import { AdyenClient } from '../client.mjs'; import type { VerificationError } from './get-legal-entity-business-lines.mjs'; export type EntityWithOwner = { documents?: string[]; id?: string; owner?: { documents?: string[]; id?: string; type?: string; }; type?: string; }; export type VerificationProblem = { entity?: EntityWithOwner; verificationErrors?: VerificationError[]; }; export type CheckVerificationErrorsOutput = { problems?: VerificationProblem[]; }; export declare function checkVerificationErrors(client: AdyenClient, legalEntityId: string): Promise; //# sourceMappingURL=check-verification-errors.d.mts.map