import { ContainerOptions, PropertyOptions } from './options'; import { Registry } from './registry'; export declare const Serde: unique symbol; export declare function serde(options: ContainerOptions | PropertyOptions): (target: any, property?: PropertyKey) => any; export declare function getMetadata(value: any): any; export declare function register(registry?: Registry): (target: any) => any;