export type TiledLinePlotMakerProps = { /** Base URL of the Tiled server to search for data to plot. */ tiledBaseUrl?: string; /** Optional initial path used in the Tiled server search. */ initialPath?: string; /** Optional class name for the component. */ classNameContainer?: string; /** Optional class name for the component. */ classNameInnerContainer?: string; /**Optional class name for the plot container */ classNamePlot?: string; }; export default function TiledLinePlotMaker({ tiledBaseUrl, initialPath, classNameContainer, classNameInnerContainer, classNamePlot, }: TiledLinePlotMakerProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TiledLinePlotMaker.d.ts.map