import { Type } from '@nestjs/common'; export interface ApiResponseOptions { status?: number; description?: string; type?: Type; isArray?: boolean; } export declare const ApiResponseDecorator: (options: ApiResponseOptions) => (target: TFunction | object, propertyKey?: string | symbol, descriptor?: TypedPropertyDescriptor) => void;