import { PropertyOptions } from '../options'; /** * Defines a resource property. * * @Annotation * @publicApi */ export declare function Property(): PropertyDecorator; /** * Defines a resource property. * * @Annotation * @publicApi */ export declare function Property(options: PropertyOptions): PropertyDecorator; /** * Defines a resource property. * * @Annotation * @publicApi */ export declare function Property(name: string): PropertyDecorator; /** * Defines a resource property. * * @Annotation * @publicApi */ export declare function Property(name: string, options: Pick>): PropertyDecorator;