import { l } from '@atproto/lex'; import * as ActorDefs from '../actor/defs.defs.js'; declare const $nsid = "app.bsky.graph.getBlocks"; export { $nsid }; /** Enumerates which accounts the requesting account is currently blocking. Requires auth. */ declare const main: l.Query<"app.bsky.graph.getBlocks", l.ParamsSchema<{ readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; blocks: l.ArraySchema>>; }>>, undefined>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "app.bsky.graph.getBlocks", $params: l.ParamsSchema<{ readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; blocks: l.ArraySchema>>; }>>; //# sourceMappingURL=getBlocks.defs.d.ts.map