import { l } from '@atproto/lex'; import * as ActorDefs from '../actor/defs.defs.js'; declare const $nsid = "app.bsky.feed.getLikes"; export { $nsid }; /** Get like records which reference a subject (by AT-URI and CID). */ declare const main: l.Query<"app.bsky.feed.getLikes", l.ParamsSchema<{ readonly uri: l.StringSchema<{ readonly format: "at-uri"; }>; readonly cid: l.OptionalSchema>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ uri: l.StringSchema<{ readonly format: "at-uri"; }>; cid: l.OptionalSchema>; cursor: l.OptionalSchema>; likes: 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.getLikes", $params: l.ParamsSchema<{ readonly uri: l.StringSchema<{ readonly format: "at-uri"; }>; readonly cid: l.OptionalSchema>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ uri: l.StringSchema<{ readonly format: "at-uri"; }>; cid: l.OptionalSchema>; cursor: l.OptionalSchema>; likes: l.ArraySchema>>; }>>; type Like = { $type?: 'app.bsky.feed.getLikes#like'; indexedAt: l.DatetimeString; createdAt: l.DatetimeString; actor: ActorDefs.ProfileView; }; export type { Like }; declare const like: l.TypedObjectSchema<"app.bsky.feed.getLikes#like", l.Validator>; export { like }; //# sourceMappingURL=getLikes.defs.d.ts.map