import { type TickerCallback } from 'pixi.js'; import { type UseTickOptions } from '../typedefs/UseTickOptions'; /** Attaches a callback to the application's Ticker. */ export declare function useTick( /** @description The function to be called on each tick. */ options: TickerCallback | UseTickOptions): void;