import { l } from '@atproto/lex'; import * as DraftDefs from './defs.defs.js'; declare const $nsid = "app.bsky.draft.createDraft"; export { $nsid }; /** Inserts a draft using private storage (stash). An upper limit of drafts might be enforced. Requires authentication. */ declare const main: l.Procedure<"app.bsky.draft.createDraft", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ draft: l.RefSchema>; }>>, l.Payload<"application/json", l.ObjectSchema<{ id: l.StringSchema<{}>; }>>, readonly ["DraftLimitReached"]>; export { main }; export type $Params = l.InferMethodParams; export type $Input = l.InferMethodInput; export type $InputBody = l.InferMethodInputBody; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "app.bsky.draft.createDraft", $params: l.ParamsSchema<{}>, $input: l.Payload<"application/json", l.ObjectSchema<{ draft: l.RefSchema>; }>>, $output: l.Payload<"application/json", l.ObjectSchema<{ id: l.StringSchema<{}>; }>>; //# sourceMappingURL=createDraft.defs.d.ts.map