import { l } from '@atproto/lex'; declare const $nsid = "app.bsky.notification.registerPush"; export { $nsid }; /** Register to receive push notifications, via a specified service, for the requesting account. Requires auth. */ declare const main: l.Procedure<"app.bsky.notification.registerPush", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ serviceDid: l.StringSchema<{ readonly format: "did"; }>; token: l.StringSchema<{}>; platform: l.StringSchema<{ knownValues: ["ios", "android", "web"]; }>; appId: l.StringSchema<{}>; ageRestricted: l.OptionalSchema; }>>, l.Payload, undefined>; export { main }; export type $Params = l.InferMethodParams; export type $Input = l.InferMethodInput; export type $InputBody = l.InferMethodInputBody; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "app.bsky.notification.registerPush", $params: l.ParamsSchema<{}>, $input: l.Payload<"application/json", l.ObjectSchema<{ serviceDid: l.StringSchema<{ readonly format: "did"; }>; token: l.StringSchema<{}>; platform: l.StringSchema<{ knownValues: ["ios", "android", "web"]; }>; appId: l.StringSchema<{}>; ageRestricted: l.OptionalSchema; }>>, $output: l.Payload; //# sourceMappingURL=registerPush.defs.d.ts.map