import { MutableRefObject, ReactNode } from "react"; export interface IHelpersContext { SERVER_BASE_URL: string; SEOdefaults?: { title: string; description: string; url: string; image: string; }; DIALOG_ELEMENT_REF?: MutableRefObject; DIALOG_CHILDREN?: ReactNode; SET_DIALOG_CHILDREN?: (children?: ReactNode) => void; __IS_USING_PROVIDER: boolean; } declare const HelpersContext: import("react").Context; export default HelpersContext;