/** * Checks if a file is valid based on the accepted file type specifiers. * * @param {File} file - The File object to validate. * @param {string} [acceptedTypeSpecifiers=''] - The accepted file type specifiers. * @returns {boolean} - True if the file is valid, false otherwise. */ export function isValidFile(file: File, acceptedTypeSpecifiers?: string): boolean; //# sourceMappingURL=is-valid-file.d.ts.map