import { l } from '@atproto/lex'; declare const $nsid = "app.bsky.feed.describeFeedGenerator"; export { $nsid }; /** Get information about a feed generator, including policies and offered feed URIs. Does not require auth; implemented by Feed Generator services (not App View). */ declare const main: l.Query<"app.bsky.feed.describeFeedGenerator", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ did: l.StringSchema<{ readonly format: "did"; }>; feeds: l.ArraySchema>>; links: l.OptionalSchema>>; }>>, 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.describeFeedGenerator", $params: l.ParamsSchema<{}>, $output: l.Payload<"application/json", l.ObjectSchema<{ did: l.StringSchema<{ readonly format: "did"; }>; feeds: l.ArraySchema>>; links: l.OptionalSchema>>; }>>; type Feed = { $type?: 'app.bsky.feed.describeFeedGenerator#feed'; uri: l.AtUriString; }; export type { Feed }; declare const feed: l.TypedObjectSchema<"app.bsky.feed.describeFeedGenerator#feed", l.Validator>; export { feed }; type Links = { $type?: 'app.bsky.feed.describeFeedGenerator#links'; privacyPolicy?: string; termsOfService?: string; }; export type { Links }; declare const links: l.TypedObjectSchema<"app.bsky.feed.describeFeedGenerator#links", l.Validator>; export { links }; //# sourceMappingURL=describeFeedGenerator.defs.d.ts.map