export type UseSetStateCallback = (state: Partial | ((currentState: T) => Partial)) => void; export type UseSetStateReturnValue = [T, UseSetStateCallback]; export declare function useSetState>(initialState: T): UseSetStateReturnValue;