import { Meta, StoryObj } from '@storybook/react'; import { default as GeoJsonPrimitive } from './GeoJsonPrimitive'; type Story = StoryObj; declare const _default: Meta; export default _default; /** * Loads an inline FeatureCollection (one Point + one LineString) and applies * visible materials in `onReady`. Without the post-mount styling, the point * would render at default ~0px size and be invisible — `GeoJsonPrimitive`'s * Buffer collections do not ship with visible defaults. */ export declare const Inline: Story; /** * Loads a GeoJSON FeatureCollection from a **blob URL** generated at story-init * time and renders it over the central United States. The blob carries an * 11x11 grid of Point features centered on (-95°, 40°) at 0.2° spacing — same * URL-fetching codepath as a real HTTPS endpoint, but self-contained so no * external service can break this story. * * The blob URL is memoized so re-renders don't refetch / rebuild the primitive. */ export declare const FromUrl: Story;