import { l } from '@atproto/lex'; declare const $nsid = "tools.ozone.verification.revokeVerifications"; export { $nsid }; export declare const $params: l.ParamsSchema<{}>; export type $Params = l.InferOutput; export declare const $input: l.Payload<"application/json", l.ObjectSchema<{ uris: l.ArraySchema>; revokeReason: l.OptionalSchema>; }>>; export type $Input = l.InferPayload; export type $InputBody = l.InferPayloadBody; export declare const $output: l.Payload<"application/json", l.ObjectSchema<{ revokedVerifications: l.ArraySchema>; failedRevocations: l.ArraySchema>>; }>>; export type $Output = l.InferPayload; export type $OutputBody = l.InferPayloadBody; /** 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 declare const $lxm = "tools.ozone.verification.revokeVerifications"; /** 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