import { SchemaObjectMetadata } from '../interfaces/schema-object-metadata.interface'; export interface ApiPropertyOptions extends Omit { name?: string; enum?: any[] | Record; enumName?: string; } export declare function ApiProperty(options?: ApiPropertyOptions): PropertyDecorator; export declare function createApiPropertyDecorator(options?: ApiPropertyOptions, overrideExisting?: boolean): PropertyDecorator; export declare function ApiPropertyOptional(options?: ApiPropertyOptions): PropertyDecorator; export declare function ApiResponseProperty(options?: Pick): PropertyDecorator;