import type { EventData } from '@fluentui/react-utilities'; export type GrowDirection = 'end' | 'start' | 'up' | 'down'; export type SupportedKeys = 'ArrowRight' | 'ArrowLeft' | 'ArrowUp' | 'ArrowDown'; export type CSSUnit = 'px' | 'viewport'; export type CSSUnitName = 'px' | 'vw' | 'vh'; export declare const UNMEASURED = -1; export declare const EVENTS: { readonly keyboard: "keyboard"; readonly touch: "touch"; readonly mouse: "mouse"; readonly setValue: "setValue"; readonly handleRef: "handleRef"; readonly wrapperRef: "wrapperRef"; readonly elementRef: "elementRef"; }; export type ResizeHandleUpdateEventData = (EventData | EventData | EventData | EventData | EventData | EventData | EventData) & { value: number; unit: CSSUnitName; };