What is the usage of declare class?whereas we can remove declare word???
export declare class DialogContentBase {
dialogTitleBar: DialogTitleBarComponent;
}
As we can simply define the class like this:
export class DialogContentBase {
dialogTitleBar: DialogTitleBarComponent;
}