interface ErrorViewProps {
    error: string;
    errorCode?: 'SESSION_EXPIRED' | 'EMPTY_LINE_ITEMS' | 'STOP_ACCEPTING_ORDERS' | null;
    mode?: string;
}
export default function ErrorView({ error, errorCode, mode }: ErrorViewProps): import("react").JSX.Element;
export {};
