import { JsonCustomConvert } from "json2typescript"; /** * @export * @enum {string} */ export declare enum StackAggregationOption { NoStackAggregation = 0, FullStackAggregation = 1, AggregateStateAndCounty = 2, AggregateCityAndCounty = 3 } export declare class StackAggregationOptionConverter implements JsonCustomConvert { serialize(data: StackAggregationOption): StackAggregationOption; deserialize(enumType: string): StackAggregationOption; }