/** * Test consumer that calls the real `useSTT()` hook so its `onDestroy` * per-hook ownership logic (R4) runs when this component unmounts. */ import { type UseSTTReturn } from '../useSTT.svelte.js'; interface Props { /** Hand the live hook back to the test so it can call start()/stop(). */ onReady?: (stt: UseSTTReturn) => void; /** If true, start a listening session as soon as this consumer mounts. */ autoStart?: boolean; } declare const SttConsumer: import("svelte").Component; type SttConsumer = ReturnType; export default SttConsumer; //# sourceMappingURL=stt-consumer.fixture.svelte.d.ts.map