import { Core } from '@strapi/strapi'; import { Context } from 'koa'; declare const _default: ({ strapi }: { strapi: Core.Strapi; }) => { /** * Safe, non-secret snapshot for the plugin admin home page (env-backed setup guidance). */ settingsStatus(ctx: Context): Promise; providers(ctx: Context): Promise; /** Public, non-secret plugin metadata (package name, version) for the admin footer. */ pluginInfo(ctx: Context): Promise; voices(ctx: Context): Promise; generate(ctx: Context): Promise; /** Tech demo: synthesize fixed phrase "Hello" via ElevenLabs (settings page). */ testTts(ctx: Context): Promise; }; export default _default;