import "reflect-metadata"; import { IArrayDecoratorArgs, IBooleanDecoratorArgs, IEnumDecoratorArgs, INumberDecoratorArgs, IObjectDecoratorArgs, IStringDecoratorArgs, SwaggerArrayItemType } from "../interfaces"; export declare const IsArray: (type: SwaggerArrayItemType, options?: Readonly>) => PropertyDecorator; export declare const IsBoolean: (options?: Readonly) => PropertyDecorator; export declare const IsNumber: (options?: Readonly) => PropertyDecorator; export declare const IsObject: (options?: Readonly) => PropertyDecorator; export declare const IsString: (options?: Readonly>) => PropertyDecorator; export declare const IsEnum: (enumType: any, options?: Readonly>) => PropertyDecorator;