import { l } from '@atproto/lex'; import * as GraphDefs from './defs.defs.js'; declare const $nsid = "app.bsky.graph.getLists"; export { $nsid }; /** Enumerates the lists created by a specified account (actor). */ declare const main: l.Query<"app.bsky.graph.getLists", l.ParamsSchema<{ readonly actor: l.StringSchema<{ readonly format: "at-identifier"; }>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; readonly purposes: l.OptionalSchema>>; }>, l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; lists: 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.getLists", $params: l.ParamsSchema<{ readonly actor: l.StringSchema<{ readonly format: "at-identifier"; }>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; readonly purposes: l.OptionalSchema>>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; lists: l.ArraySchema>>; }>>; //# sourceMappingURL=getLists.defs.d.ts.map