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