import { type PluginRouteApp, type User } from "@sentry/junior-plugin-api"; import { type SchedulerDb } from "./store"; interface SchedulerApiOptions { db: SchedulerDb; users: { resolve(email: string): Promise; }; } /** Create authenticated API routes for personal scheduled-task actions. */ export declare function createSchedulerApi(options: SchedulerApiOptions): PluginRouteApp; export {};