import { Style as IStyle } from 'mapbox-gl';
export declare enum WORLD_VIEW {
    CN = "CN",
    US = "US",
    IN = "IN"
}
export declare enum MapboxThemeTypes {
    Light = "light",
    Dark = "dark",
    EleganceGreen = "eleganceGreen",
    Outdoors = "outdoors",
    Streets = "streets"
}
export declare type ICreateStyles = (queryPath: string, options: {
    worldView?: WORLD_VIEW;
    mapThemeType?: MapboxThemeTypes;
    tilePath?: string;
}) => IStyle;
