/** * `useSession()` * * Hook to read/write any data in the context throughout the session in CX. * @see [Documentation](https://www.notion.so/griddoio/useSession-e446c9f55af34d09b8c27c1fcff529c3) * * @example * const [state, setState] = useSession() */ declare const useSession: () => [Record, (state: Record) => void]; export { useSession };