/// import { ColorRampElement, SizeRampElement, UnivariateColorSizeRampElement } from '../../../interfaces/interfaces'; export declare function getUnivariateColorRampMargin(sizeRampElement: SizeRampElement, style?: "card" | "classic"): number; export declare function getUnivariateColorRampPreview(colorRampElement: ColorRampElement, symbolUtils: __esri.symbolUtils, options: { width?: number; height?: number; rampAlignment: "horizontal" | "vertical"; opacity: number; type: "above" | "below" | "full"; effectList?: unknown; }): HTMLElement | null; export declare function getUnivariateSizeRampSize(sizeRampElement: SizeRampElement, type: "above" | "below" | "full", isAboveAndBelow: boolean, rampAlignment?: "horizontal" | "vertical"): number; export declare function getUnivariateColorRampSize(sizeRampElement: SizeRampElement, type: "above" | "below" | "full", isAboveAndBelow: boolean, rampAlignment?: "horizontal" | "vertical"): number; export declare function getUnivariateAboveAndBelowRampElements(legendElement: __esri.UnivariateColorSizeRampElement, opacity: number, rampAlignment?: "horizontal" | "vertical"): { sizeRampElement: SizeRampElement; colorRampElement: ColorRampElement; }; export declare function getUnivariateColorSizeRampElements(legendElement: UnivariateColorSizeRampElement, rampAlignment?: "horizontal" | "vertical"): { sizeRampElement: SizeRampElement; colorRampElement: ColorRampElement; };