import CustomEventPropertyFilter from './custom-event-property-filter'; import { PropertyType, ResourceType } from './types'; export declare const PROPERTY_TYPE_MAP: { [key in PropertyType]: string; }; export declare const RESOURCE_TYPE_MAP: { [key in ResourceType]: string; }; interface SegfilterFilter { operand: string | number | Array; operator?: string; unit?: string; } interface Property { type: string; name: string; source: string; } export interface Segfilter { property: Property; type: string; selected_property_type: string; filter: SegfilterFilter; } export declare function convertSegfilterToPropertyFilter(segfilter: Segfilter): CustomEventPropertyFilter; export declare function convertPropertyFilterToSegfilter(propertyFilter: CustomEventPropertyFilter): Segfilter; export {};