export declare enum Type { b = 0, a = "hahah" } export declare enum Type2 { b = 0, a = "hahah" } export interface IProps { num: number; title: string; type: 'a' | '12' | Type; } export interface IUser { id: string; nickname: string; }