import { ReactNode } from 'react'; import { TRenderLazyPreloader } from '../../types'; interface IProps extends IState { children: ReactNode; } /** ----------------------------------------- | Interface | /** ---------------------------------------*/ interface IState { isLazy?: boolean; renderLazyPreloader: TRenderLazyPreloader; } /** ----------------------------------------- | Initial State | /** ---------------------------------------*/ export declare const SlideContext: import("react").Context; /** ----------------------------------------- | useContext Hook | /** ---------------------------------------*/ export declare const useSlide: () => IState; interface IProps extends IState { children: ReactNode; } /** * Provider */ export declare const SlideProvider: (props: IProps) => import("react/jsx-runtime").JSX.Element; export {};