/** @see https://foxact.skk.moe/use-state-with-deps */ declare function useStateWithDeps = Record>(initialState: S): [ snapshot: Readonly, setState: (payload: Partial | ((prevState: Readonly) => Partial)) => void ]; export { useStateWithDeps };