import { TaskState } from '@wix/bex-core'; import { ReactElement, ReactNode } from 'react'; import { BoxProps } from '@wix/design-system'; export interface SplashProps extends Partial { state: TaskState; children?: ReactNode; renderError: (params: { err: unknown; isOnline: boolean; }) => ReactElement; dataHook?: string; } declare function _Splash(props: SplashProps): JSX.Element; export declare const Splash: typeof _Splash & { displayName: string; }; export {}; //# sourceMappingURL=Splash.d.ts.map