import { NestInterceptor, Type } from '@nestjs/common';
interface MediaUploadOptions {
    multiple?: boolean;
    fieldName?: string;
    maxCount?: number;
    maxSizeInBytes?: number;
}
export declare function MediaUploadInterceptor(options?: MediaUploadOptions): Type<NestInterceptor>;
export {};
