import { SetStateAction } from "react"; export interface useStateGlobalContextProps { defaultValue: T; name?: string; } export declare const useStateGlobalContext: ({ name, defaultValue, }: useStateGlobalContextProps) => { data: T; setData: (f: SetStateAction) => void; };