import { l } from '@atproto/lex'; import * as FeedDefs from './defs.defs.js'; declare const $nsid = "app.bsky.feed.getPosts"; export { $nsid }; /** Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'. */ declare const main: l.Query<"app.bsky.feed.getPosts", l.ParamsSchema<{ readonly uris: l.ArraySchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ posts: 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.feed.getPosts", $params: l.ParamsSchema<{ readonly uris: l.ArraySchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ posts: l.ArraySchema>>; }>>; //# sourceMappingURL=getPosts.defs.d.ts.map