import type { ForwardRefExoticComponent, ReactNode } from 'react'; import type { ErrorBoundaryResponse, PartialTheme, SvgComponents } from '../../types'; export interface PolarisVizProviderProps { children: ReactNode; themes?: { [key: string]: PartialTheme; }; components?: SvgComponents; defaultTheme?: string; animated: (Component: any) => ForwardRefExoticComponent; onError?: ErrorBoundaryResponse; } export declare function PolarisVizProvider({ children, defaultTheme, themes, components, animated, onError, }: PolarisVizProviderProps): JSX.Element; //# sourceMappingURL=PolarisVizProvider.d.ts.map