import 'reflect-metadata'; import type { SpaceFromSpec } from './space-from'; export interface XemaResourceMetadata { readonly resource: string; readonly spaceFrom?: SpaceFromSpec; readonly tags?: readonly string[]; } export interface XemaResourceOptions { resource: string; spaceFrom?: SpaceFromSpec; tags?: readonly string[]; } export declare function XemaResource(arg: string | XemaResourceOptions): ClassDecorator; //# sourceMappingURL=resource.decorator.d.ts.map