import { Bot, IPassportElementError, PassportElementError } from "./_internals.js"; /** Represents an issue with a list of scans. The error is considered resolved when the list of files containing the scans changes. */ export declare class PassportElementErrorFiles extends PassportElementError implements IPassportElementErrorFiles { constructor(data: IPassportElementErrorFiles, token?: string | Bot); source: "files"; type: "utility_bill" | "bank_statement" | "rental_agreement" | "passport_registration" | "temporary_registration"; file_hashes: string[]; message: string; } /** Represents an issue with a list of scans. The error is considered resolved when the list of files containing the scans changes. */ export interface IPassportElementErrorFiles extends IPassportElementError { /** Error source, must be *files* */ source: "files"; /** The section of the user's Telegram Passport which has the issue, one of “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration”, “temporary_registration” */ type: "utility_bill" | "bank_statement" | "rental_agreement" | "passport_registration" | "temporary_registration"; /** List of base64-encoded file hashes */ file_hashes: string[]; /** Error message */ message: string; }