import type { RuntimeActionHandlers } from '@ankhorage/runtime'; interface RouterLike { push: (args: { pathname: string; params: Record; }) => void; } export declare function executeRuntimeAction(args: { action: unknown; router: RouterLike; mode: 'light' | 'dark'; setMode: (mode: 'light' | 'dark') => void; actionHandlers?: RuntimeActionHandlers; requestAnimationFrameImpl?: typeof requestAnimationFrame; alertImpl?: typeof alert; consoleImpl?: Pick; }): Promise; export {}; //# sourceMappingURL=runtimeActions.d.ts.map