type $$ComponentProps = { error?: Error | null; title?: string; description?: string; retry?: () => void; }; declare const ErrorComponent: import("svelte").Component<$$ComponentProps, {}, "">; type ErrorComponent = ReturnType; export default ErrorComponent;