/**
 *
 */
export interface ISymbol {
    type: SymbolType;
    style?: string;
}
/**
 *
 */
export type SymbolType = "esriSLS" | "esriSMS" | "esriSFS" | "esriPMS" | "esriPFS" | "esriTS";
