import { z } from 'zod'; import type { Result } from '../../domain/result.js'; import type { AuthManager } from '../../infra/auth.js'; declare const schema: z.ZodObject<{}, z.core.$strict>; declare const execute: (auth: AuthManager) => Promise>; export { execute, schema };