import { Meta, StoryObj } from '@storybook/react'; import { default as ScreenSpaceEvent } from './ScreenSpaceEvent'; type Story = StoryObj; declare const _default: Meta; export default _default; /** * Demonstrates plain, single-modifier, and chord-modifier bindings on the same * event type. Each binding drops a colored point on the globe at the click * location, so it's obvious which combination fired: * * - **Plain click** → red point * - **ALT + click** → yellow point * - **ALT + SHIFT + click** → cyan point (chord — requires Cesium 1.142+) * * The overlay also logs the last few events for confirmation. Clicks that miss * the globe (e.g. above the horizon) only update the log. */ export declare const Chord: Story;