import { HapiUIIconType } from "./enums"; import { DOMEventType } from "../common"; export type HapiUIIconConfig = { fromType: HapiUIIconType; fromName: string; toType: HapiUIIconType; toName: string; lottieFilePath?: string; }; export type HAPIUIScrollPosition = { top: number; left: number; }; export type HAPIDOMEventTriggeredEventType = Extract; export type HAPIDomEventTriggeredEventSerializable = { type: string; timeStamp: number; target: string; currentTarget: string; key?: string; code?: string; value?: string; checked?: boolean; scrollTop?: number; scrollLeft?: number; path: string[]; }; //# sourceMappingURL=types.d.ts.map