import { SchemaObjectMetadata } from '../interfaces'; export interface ApiPropertyOptions extends Omit { name?: string; enum?: any[] | Record; enumName?: string; $ref?: string; } export declare function ApiProperty(options?: ApiPropertyOptions): PropertyDecorator; export declare function createApiPropertyDecorator(options?: ApiPropertyOptions): PropertyDecorator; export declare function ApiPropertyOptional(options?: ApiPropertyOptions): PropertyDecorator; export declare function ApiResponseProperty(options?: Pick): PropertyDecorator; //# sourceMappingURL=api-property.decorator.d.ts.map