import { UseUuiServicesProps } from '../hooks/useUuiServices'; export interface IContextProviderSsrProps extends UseUuiServicesProps { router: any; } /** * This hook creates UUI context compatible with Next.js pages router * * @example * const { services } = useUuiServicesSsr({ ... }); * ... * // And then, use it in code like this: * const services = useUuiContext(); * * @param props */ export declare function useUuiServicesSsr(props: IContextProviderSsrProps): { services: import("index").CommonContexts; }; //# sourceMappingURL=useUuiServicesSsr.d.ts.map