import { l } from '@atproto/lex'; import * as FeedDefs from './defs.defs.js'; declare const $nsid = "app.bsky.feed.getTimeline"; export { $nsid }; /** Get a view of the requesting account's home timeline. This is expected to be some form of reverse-chronological feed. */ declare const main: l.Query<"app.bsky.feed.getTimeline", l.ParamsSchema<{ readonly algorithm: l.OptionalSchema>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; feed: 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.getTimeline", $params: l.ParamsSchema<{ readonly algorithm: l.OptionalSchema>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; feed: l.ArraySchema>>; }>>; //# sourceMappingURL=getTimeline.defs.d.ts.map