import * as React from 'react'; import { ISelectorType } from '../common/Selector'; import { IFunctionBaseWindowToolProps } from '../BaseWindowTool'; export interface ILayerLoaderContentProps extends IFunctionBaseWindowToolProps { selectorTypes: ISelectorType[]; showGisProxyUrlInput?: boolean; gisProxyUrl?: string; } export declare function LayerLoaderContent(props: ILayerLoaderContentProps): React.JSX.Element;