import { l } from '@atproto/lex'; import * as ContactDefs from './defs.defs.js'; declare const $nsid = "app.bsky.contact.importContacts"; export { $nsid }; /** Import contacts for securely matching with other users. This follows the protocol explained in https://docs.bsky.app/blog/contact-import-rfc. Requires authentication. */ declare const main: l.Procedure<"app.bsky.contact.importContacts", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ token: l.StringSchema<{}>; contacts: l.ArraySchema>; }>>, l.Payload<"application/json", l.ObjectSchema<{ matchesAndContactIndexes: l.ArraySchema>>; }>>, readonly ["InvalidDid", "InvalidContacts", "TooManyContacts", "InvalidToken", "InternalError"]>; 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.contact.importContacts", $params: l.ParamsSchema<{}>, $input: l.Payload<"application/json", l.ObjectSchema<{ token: l.StringSchema<{}>; contacts: l.ArraySchema>; }>>, $output: l.Payload<"application/json", l.ObjectSchema<{ matchesAndContactIndexes: l.ArraySchema>>; }>>; //# sourceMappingURL=importContacts.defs.d.ts.map