interface GenericErrorProps { err: Error; withStack: boolean; withIssue?: boolean; title?: string; } /** * Render a generic error to the terminal. This is used for errors that don't * have a specific rendering function. */ export default function GenericError({ err, withStack, withIssue, title, }: GenericErrorProps): import("react").JSX.Element; export {};