import { PropertyData, StringLength } from '../types';
type PropertyDecoratorStringData = PropertyData<string> & StringLength;
/**
 * @deprecated Use `field.string()` inside `defineDto()` instead.
 * The decorator API will be removed in the next major version (v2).
 * @see https://github.com/andrei-trukhin/bookish-potato-dto-issues/blob/main/MIGRATION.md
 */
export declare function StringProperty(data?: PropertyDecoratorStringData): (target: any, propertyKey: string) => void;
export {};
