import { CanRegEnumValue, ValueOf } from '../../enum-values'; export declare class NotificationEnumValue { static key: string; static types: { live_float: string; live_in: string; app_in: string; }; static get keys(): string[]; static get data(): { [key in keyof typeof NotificationEnumValue.types]: string; }; } export declare type NotificationType = ValueOf; export declare class NotificationUsageEnumValue extends CanRegEnumValue { static key: string; static types: {}; static desc: {}; static get keys(): string[]; static get data(): { [key in keyof typeof NotificationUsageEnumValue.types]: string; }; } export declare type NotificationUsageType = ValueOf;