import { default as React } from 'react';
import { Style, StyleParser } from 'geostyler-style';
export interface StyleLoaderProps {
    /** The callback method that is triggered when the state changes */
    onStyleRead: (style: Style) => void;
    /** List of data parsers to use */
    parsers: StyleParser[];
}
export declare const StyleLoader: React.FC<StyleLoaderProps>;
