import './ErrorComponent.scss'; import { IconTheme } from '../../svgs/Icons/IconsCommonTypes'; import { FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel'; type ErrorComponentProps = { title?: string; ClickActionHandler?: FunctionTypeVoidToVoid; TouchActionHandler?: FunctionTypeVoidToVoid; theme?: IconTheme; }; declare const ErrorComponent: ({ title, ClickActionHandler, TouchActionHandler, theme, }: ErrorComponentProps) => import("react/jsx-runtime").JSX.Element; export default ErrorComponent; //# sourceMappingURL=ErrorComponent.d.ts.map