import { PipeTransform } from '@angular/core';
import * as i0 from "@angular/core";
export declare class MatchesMimeTypePipe implements PipeTransform {
    transform(input: string, allowedMimeTypes: string): boolean;
    transform(input: {
        type: string;
    }[], allowedMimeTypes: string): {
        type: string;
    }[];
    transform(input: {
        type: string;
    }[], mode: 'all' | 'any', allowedMimeTypes: string): {
        type: string;
    }[];
    transform(input: {
        type: string;
    }[], allowedMimeTypes: string, mode: 'all' | 'any'): {
        type: string;
    }[];
    static ɵfac: i0.ɵɵFactoryDeclaration<MatchesMimeTypePipe, never>;
    static ɵpipe: i0.ɵɵPipeDeclaration<MatchesMimeTypePipe, "matchesMimeType">;
}
