import { l } from '@atproto/lex'; import * as FeedDefs from './defs.defs.js'; declare const $nsid = "app.bsky.feed.getListFeed"; export { $nsid }; /** Get a feed of recent posts from a list (posts and reposts from any actors on the list). Does not require auth. */ declare const main: l.Query<"app.bsky.feed.getListFeed", l.ParamsSchema<{ readonly list: l.StringSchema<{ readonly format: "at-uri"; }>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; feed: l.ArraySchema>>; }>>, readonly ["UnknownList"]>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "app.bsky.feed.getListFeed", $params: l.ParamsSchema<{ readonly list: l.StringSchema<{ readonly format: "at-uri"; }>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; feed: l.ArraySchema>>; }>>; //# sourceMappingURL=getListFeed.defs.d.ts.map