export declare enum DevicePlatform {
    ANDROID = "android",
    IOS = "ios",
    WEB = "web"
}
export declare class RegisterDeviceDto {
    fcmToken: string;
    platform: DevicePlatform;
}
