import { GrafanaTheme2 } from '../themes/types'; import { Field } from '../types/dataFrame'; import { DisplayProcessor } from '../types/displayValue'; import { TimeZone } from '../types/time'; interface DisplayProcessorOptions { field: Partial; /** * Will pick browser timezone if not defined */ timeZone?: TimeZone; /** * Will pick 'dark' if not defined */ theme: GrafanaTheme2; } export declare function getDisplayProcessor(options?: DisplayProcessorOptions): DisplayProcessor; export declare function getRawDisplayProcessor(): DisplayProcessor; export {};