import { ReactNode } from "react"; export interface historyAtomI { back_step: number; back_action: "view" | "panel" | "back" | ""; activeView: string; activePanel: string; activeModal: string | null; activePopout: ReactNode | null; history: Array<{ id?: string; component?: ReactNode; type: "view" | "panel" | "popout" | "modal"; main_view?: string; data?: any; }>; views: { history: Array; panels: object; }; } export declare const history: import("recoil").RecoilState;