interface IProps { title?: string; type?: 'error' | 'interrupted'; desc?: string; } export default function Interrupted(props: IProps): import("react/jsx-runtime").JSX.Element; export {};