declare class MyBase { color: string; } export declare class WithProp extends MyBase { mySettings_: any; set mySettings(name: string); hello(): void; } export {};