import { Server } from '@atproto/xrpc-server'; import { AppContext } from '../../../../context.js'; import { DataPlaneClient } from '../../../../data-plane/index.js'; import { FeedItem } from '../../../../hydration/feed.js'; import { HydrateCtxWithViewer, Hydrator } from '../../../../hydration/hydrator.js'; import { app } from '../../../../lexicons/index.js'; import { Views } from '../../../../views/index.js'; export default function (server: Server, ctx: AppContext): void; export declare const skeleton: (inputs: { ctx: Context; params: Params; }) => Promise; type Context = { hydrator: Hydrator; views: Views; dataplane: DataPlaneClient; }; type Params = app.bsky.feed.getTimeline.$Params & { hydrateCtx: HydrateCtxWithViewer; }; type Skeleton = { items: FeedItem[]; cursor?: string; }; export {}; //# sourceMappingURL=getTimeline.d.ts.map