import { ReactNode } from "react"; export interface ErrorViewProps { children: ReactNode; onRefresh?: () => void; errorMessage?: string; } export declare const ErrorView: ({ children, errorMessage, onRefresh, }: ErrorViewProps) => JSX.Element; //# sourceMappingURL=index.d.ts.map