import TableMount from './TableMount'; interface DecoratedObject { handlers?: { commandStr: string; callback: any; }[]; name: string; schemaStr: string; } export declare function handles(commandStr: string): (object: any, propertyKey: string, descriptor: PropertyDescriptor) => void; export declare function decoratedObjToTableMount(obj: DecoratedObject): TableMount; export {};