export interface ConsoleEntry { type: 'input' | 'success' | 'error' | 'formatted'; text: string; } interface Props { /** Output entries to display */ entries: ConsoleEntry[]; } declare const ConsoleOutput: import("svelte").Component; type ConsoleOutput = ReturnType; export default ConsoleOutput;