import { Metadata as IMetadata } from '../interfaces/interfaces'; export declare class Metadata implements IMetadata { key: string | number | symbol; value: any; constructor(key: string | number | symbol, value: any); toString(): string; }