import React from 'react'; import { type Dataset, type QueryResultState } from '@latitude-data/client'; export type WrapperProps = QueryResultState & { bordered?: boolean; title?: string; description?: string; height?: number; width?: number; download?: () => Promise; className?: string; children: (props: { dataset: Dataset; contentHeight?: number; }) => React.ReactNode; }; export default function ChartWrapper({ data, isLoading, error, bordered, title, description, height, width, download, className, children, }: WrapperProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ChartWrapper.d.ts.map