import { l } from '@atproto/lex'; declare const $nsid = "app.bsky.bookmark.deleteBookmark"; export { $nsid }; /** Deletes a private bookmark for the specified record. Currently, only `app.bsky.feed.post` records are supported. Requires authentication. */ declare const main: l.Procedure<"app.bsky.bookmark.deleteBookmark", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ uri: l.StringSchema<{ readonly format: "at-uri"; }>; }>>, l.Payload, readonly ["UnsupportedCollection"]>; 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.bookmark.deleteBookmark", $params: l.ParamsSchema<{}>, $input: l.Payload<"application/json", l.ObjectSchema<{ uri: l.StringSchema<{ readonly format: "at-uri"; }>; }>>, $output: l.Payload; //# sourceMappingURL=deleteBookmark.defs.d.ts.map