export declare const BulkPublishStatus: { readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly NOT_STARTED: "NOT_STARTED"; readonly SUCCEEDED: "SUCCEEDED"; }; export type BulkPublishStatus = (typeof BulkPublishStatus)[keyof typeof BulkPublishStatus]; export declare const StreamingStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; export type StreamingStatus = (typeof StreamingStatus)[keyof typeof StreamingStatus]; export declare const Platform: { readonly ADM: "ADM"; readonly APNS: "APNS"; readonly APNS_SANDBOX: "APNS_SANDBOX"; readonly GCM: "GCM"; }; export type Platform = (typeof Platform)[keyof typeof Platform]; export declare const Operation: { readonly remove: "remove"; readonly replace: "replace"; }; export type Operation = (typeof Operation)[keyof typeof Operation];