import { l } from '@atproto/lex'; import * as ContactDefs from './defs.defs.js'; declare const $nsid = "app.bsky.contact.importContacts"; export { $nsid }; export declare const $params: l.ParamsSchema<{}>; export type $Params = l.InferOutput; export declare const $input: l.Payload<"application/json", l.ObjectSchema<{ token: l.StringSchema<{}>; contacts: l.ArraySchema>; }>>; export type $Input = l.InferPayload; export type $InputBody = l.InferPayloadBody; export declare const $output: l.Payload<"application/json", l.ObjectSchema<{ matchesAndContactIndexes: l.ArraySchema>>; }>>; export type $Output = l.InferPayload; export type $OutputBody = l.InferPayloadBody; /** 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 declare const $lxm = "app.bsky.contact.importContacts"; //# sourceMappingURL=importContacts.defs.d.ts.map