/// import type { EleventyConfig } from '@11ty/eleventy'; import type { Config } from './eleventy/plugin.js'; export { defaultAudioInnerHTML } from './audio-html.js'; export { DEBUG_PREFIX, DEFAULT_COLLECTION_NAME, DEFAULT_TRANSFORM_NAME } from './constants.js'; export { config, type Config } from './eleventy/plugin.js'; export type { Write, WriteResult, Hosting } from './hosting/index.js'; export { mediaType } from './media-type.js'; export type { Rule } from './schemas/rule.js'; export type { Synthesize, SynthesizeResult, Synthesis } from './synthesis/index.js'; export { textToAudioAsset } from './text-to-audio-asset.js'; /** * Adds Text-to-Speech functionality to an Eleventy site. * * @public */ export declare const textToSpeechPlugin: (eleventyConfig: EleventyConfig, config: Config) => void; //# sourceMappingURL=index.d.ts.map