import { l } from '@atproto/lex'; declare const $nsid = "tools.ozone.verification.revokeVerifications"; export { $nsid }; /** Revoke previously granted verifications in batches of up to 100. */ declare const main: l.Procedure<"tools.ozone.verification.revokeVerifications", l.ParamsSchema<{}>, l.Payload<"application/json", l.ObjectSchema<{ uris: l.ArraySchema>; revokeReason: l.OptionalSchema>; }>>, l.Payload<"application/json", l.ObjectSchema<{ revokedVerifications: l.ArraySchema>; failedRevocations: l.ArraySchema>>; }>>, undefined>; 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: "tools.ozone.verification.revokeVerifications", $params: l.ParamsSchema<{}>, $input: l.Payload<"application/json", l.ObjectSchema<{ uris: l.ArraySchema>; revokeReason: l.OptionalSchema>; }>>, $output: l.Payload<"application/json", l.ObjectSchema<{ revokedVerifications: l.ArraySchema>; failedRevocations: l.ArraySchema>>; }>>; /** Error object for failed revocations */ type RevokeError = { $type?: 'tools.ozone.verification.revokeVerifications#revokeError'; /** * The AT-URI of the verification record that failed to revoke. */ uri: l.AtUriString; /** * Description of the error that occurred during revocation. */ error: string; }; export type { RevokeError }; /** Error object for failed revocations */ declare const revokeError: l.TypedObjectSchema<"tools.ozone.verification.revokeVerifications#revokeError", l.Validator>; export { revokeError }; //# sourceMappingURL=revokeVerifications.defs.d.ts.map