export declare class PythonObject { readonly id: number; readonly type: string; constructor(id: number, type: string); } export declare class PythonProperty { readonly object: PythonObject; readonly name: string; constructor(object: PythonObject, name: string); }