import React from 'react';
import { Meta, StoryObj } from '@storybook/react';
import { ChoroplethGeoJsonOptions } from '@opendatasoft/visualizations';
import { ChoroplethSvg } from 'src';
declare const ChoroPlethWithSelect: ({ scale, dataset, height, width, options, }: {
    scale: string;
    dataset: number;
    height: string;
    width: string;
    options: ChoroplethGeoJsonOptions;
}) => React.JSX.Element;
declare const meta: Meta<typeof ChoroplethSvg>;
export default meta;
export declare const ChoroplethSvgStory: StoryObj<typeof ChoroPlethWithSelect>;
