type TypeGeneric = any; export declare class SafeChainInvoker { target: TypeGeneric; chain: string[]; constructor(propChain: string, target?: TypeGeneric); call(...args: TypeGeneric): any; } export {};