/** * Validates a File object against an `accept` parameter value. * @param {string | null} references comma-delimited list of reference MIME types (similar to `input`'s `accept` attribute) * @param {string} subject The MIME type of the file to be checked * @returns {boolean} Whether the file should be accepted */ export default function accepted(references: string | null, subject: string): boolean; //# sourceMappingURL=accepted-file-type.d.ts.map