import { PaneNode, RouterPanes } from './types'; import { LOADING_PANE } from './constants'; export declare function setActivePanes(panes: Array): void; /** * This function looks at the _active panes_ to resolve an intent. this type of * intent resolution is faster and does not cause the panes to reset * * @internal */ export declare function getIntentState(intentName: string, params: Record, currentState: { panes?: RouterPanes; } | undefined, payload: unknown): { panes: RouterPanes; } | { intent: string; params: Record; payload: unknown; }; //# sourceMappingURL=getIntentState.d.ts.map