import { FileLayer, InstanceAPI } from '../../api/internal'; import { RampLayerConfig } from '../api'; /** * A layer class which implements an ESRI Feature Layer with data from a CSV file source. */ export declare class CsvLayer extends FileLayer { constructor(rampConfig: RampLayerConfig, $iApi: InstanceAPI); protected onInitiate(): Promise; }