import { l } from '@atproto/lex'; import * as ServerDefs from './defs.defs.js'; declare const $nsid = "com.atproto.server.getAccountInviteCodes"; export { $nsid }; /** Get all invite codes for the current account. Requires auth. */ declare const main: l.Query<"com.atproto.server.getAccountInviteCodes", l.ParamsSchema<{ readonly includeUsed: l.OptionalSchema>; readonly createAvailable: l.OptionalSchema>; }>, l.Payload<"application/json", l.ObjectSchema<{ codes: l.ArraySchema>>; }>>, readonly ["DuplicateCreate"]>; export { main }; export type $Params = l.InferMethodParams; export type $Output = l.InferMethodOutput; export type $OutputBody = l.InferMethodOutputBody; export declare const $lxm: "com.atproto.server.getAccountInviteCodes", $params: l.ParamsSchema<{ readonly includeUsed: l.OptionalSchema>; readonly createAvailable: l.OptionalSchema>; }>, $output: l.Payload<"application/json", l.ObjectSchema<{ codes: l.ArraySchema>>; }>>; //# sourceMappingURL=getAccountInviteCodes.defs.d.ts.map