import { DekApiMessage, DekBoard, DekCommand, DekCommandGroup, DekIntegration, DekPluginFactory, DekRegistry } from '@appkit/dek-plugin'; export type SetLocationFunc = (to: string, options?: { replace?: boolean | undefined; } | undefined) => void; type Globals = { boards: DekBoard[]; commandGroups: DekCommandGroup[]; commands: DekCommand[]; plugins: Readonly>>; integrationInstances: Readonly>>; setLocation: SetLocationFunc; registry: DekRegistry; messages: DekApiMessage[]; navigateParams: Record; }; declare const globals: Globals; export default globals;