import React from "react"; import { ReactUnity, UnityEngine } from "@reactunity/renderer"; import { PointerEventCallback } from "@reactunity/renderer/ugui"; //#region src/ripple/index.d.ts type RippleBaseProps = { onPointerDown?: PointerEventCallback; onPointerUp?: PointerEventCallback; noRipple?: boolean; centered?: boolean; target?: React.RefObject; }; declare function addRipple(containerElement: ReactUnity.UGUI.UGUIComponent, pressPosition?: UnityEngine.Vector2): ReactUnity.UGUI.UGUIComponent; declare function useRipple({ onPointerDown, onPointerUp, noRipple, centered, target }: RippleBaseProps): { onPointerDown: PointerEventCallback; onPointerUp: PointerEventCallback; }; //#endregion export { addRipple as n, useRipple as r, RippleBaseProps as t }; //# sourceMappingURL=index-CfNYmtp8.d.ts.map