import { l } from '@atproto/lex'; import * as GraphDefs from './defs.defs.js'; declare const $nsid = "app.bsky.graph.getStarterPacksWithMembership"; export { $nsid }; /** Enumerates the starter packs created by the session user, and includes membership information about `actor` in those starter packs. Requires auth. */ declare const main: l.Query<"app.bsky.graph.getStarterPacksWithMembership", l.ParamsSchema<{ readonly actor: l.StringSchema<{ readonly format: "at-identifier"; }>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; starterPacksWithMembership: 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.graph.getStarterPacksWithMembership", $params: l.ParamsSchema<{ readonly actor: l.StringSchema<{ readonly format: "at-identifier"; }>; readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; starterPacksWithMembership: l.ArraySchema>>; }>>; /** A starter pack and an optional list item indicating membership of a target user to that starter pack. */ type StarterPackWithMembership = { $type?: 'app.bsky.graph.getStarterPacksWithMembership#starterPackWithMembership'; starterPack: GraphDefs.StarterPackView; listItem?: GraphDefs.ListItemView; }; export type { StarterPackWithMembership }; /** A starter pack and an optional list item indicating membership of a target user to that starter pack. */ declare const starterPackWithMembership: l.TypedObjectSchema<"app.bsky.graph.getStarterPacksWithMembership#starterPackWithMembership", l.Validator>; export { starterPackWithMembership }; //# sourceMappingURL=getStarterPacksWithMembership.defs.d.ts.map