import { ApiPropertyOptions } from '@nestjs/swagger/dist/decorators/api-property.decorator'; import { BaseDecoratorOptions } from '../types'; declare type PropertyStringParams = { pattern?: RegExp; trim?: boolean; } & BaseDecoratorOptions & Pick; export declare function ApiPropertyString({ isOptional, pattern, trim, ...options }?: PropertyStringParams): PropertyDecorator; export {};