import { l } from '@atproto/lex'; import * as FeedDefs from './defs.defs.js'; declare const $nsid = "app.bsky.feed.getFeed"; export { $nsid }; /** Get a hydrated feed from an actor's selected feed generator. Implemented by App View. */ declare const main: l.Query<"app.bsky.feed.getFeed", l.ParamsSchema<{ readonly feed: 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 ["UnknownFeed"]>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "app.bsky.feed.getFeed", $params: l.ParamsSchema<{ readonly feed: 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=getFeed.defs.d.ts.map