export declare const CreatePushSubscriptionsResponseSchema: { readonly title: "CreatePushSubscriptionsResponseSchema"; readonly type: "object"; readonly additionalProperties: false; readonly properties: { readonly id: { readonly type: "string"; }; readonly device_token: { readonly type: "string"; }; readonly platform: { readonly type: "string"; }; readonly app_bundle_id: { readonly type: "string"; readonly nullable: true; }; }; }; export declare const CreatePushSubscriptionsPayloadSchema: { readonly title: "CreatePushSubscriptionsPayloadSchema"; readonly type: "object"; readonly required: readonly ["device_token", "platform"]; readonly additionalProperties: false; readonly properties: { readonly device_token: { readonly type: "string"; readonly description: "Token that identifies the device. This is usually generated automatically by your app once installed."; readonly maxLength: 255; }; readonly platform: { readonly type: "string"; readonly description: "The platform where the device token was generated from. This value is used to determine the delivery mechanism for mobile push notifications. Either 'ios', 'android' or 'safari'."; readonly minLength: 3; }; readonly app_bundle_id: { readonly type: "string"; readonly description: "The bundle ID of your app. This value is used to determine the delivery mechanism for mobile push notifications based on your workflow so that you can link several mobile applications to one project."; readonly maxLength: 155; }; }; }; export declare const ListPushSubscriptionsResponseSchema: { readonly title: "ListPushSubscriptionsResponseSchema"; readonly type: "object"; readonly additionalProperties: false; readonly properties: { readonly per_page: { readonly type: "integer"; }; readonly current_page: { readonly type: "integer"; }; readonly push_subscriptions: { readonly type: "array"; readonly items: { readonly type: "object"; readonly additionalProperties: false; readonly properties: { readonly id: { readonly type: "string"; }; readonly user_id: { readonly type: "string"; readonly format: "uuid"; }; readonly device_token: { readonly type: "string"; }; readonly platform: { readonly type: "string"; }; readonly created_at: { readonly type: "string"; readonly format: "date-time"; }; readonly discarded_at: { readonly type: "string"; readonly format: "date-time"; readonly nullable: true; }; }; }; }; }; };