import { SubResourceOptions } from '../options'; /** * Defines a resource sub resource. * * @Annotation * @publicApi */ export declare function SubResource(type: () => Function): PropertyDecorator; /** * Defines a resource sub resource. * * @Annotation * @publicApi */ export declare function SubResource(options: SubResourceOptions): PropertyDecorator; /** * Defines a resource sub resource. * * @Annotation * @publicApi */ export declare function SubResource(type: () => Function, options: Pick>): PropertyDecorator;