import { l } from '@atproto/lex'; import * as DraftDefs from './defs.defs.js'; declare const $nsid = "app.bsky.draft.getDrafts"; export { $nsid }; /** Gets views of user drafts. Requires authentication. */ declare const main: l.Query<"app.bsky.draft.getDrafts", l.ParamsSchema<{ readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; drafts: 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.draft.getDrafts", $params: l.ParamsSchema<{ readonly limit: l.OptionalSchema>; readonly cursor: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ cursor: l.OptionalSchema>; drafts: l.ArraySchema>>; }>>; //# sourceMappingURL=getDrafts.defs.d.ts.map