import type { ContextExState } from '@ariestools/sdk-react/shared'; import type { Dispatch, SetStateAction } from 'react'; /** State for the node drawer open/closed context. */ export type NodeDrawerState = ContextExState<{ open?: boolean; setOpen?: Dispatch>; }>; //# sourceMappingURL=State.d.ts.map