import React, { FC, PropsWithChildren } from "react";
import { tApp } from "../../domain/types/t.app";
import { tMain } from "../../domain/types/t.main";
export declare const Context: React.Context<tMain>;
export type Props = tApp & {};
export declare const MainProvider: FC<PropsWithChildren<Props>>;
