import { UPDATE_PRIORITY } from 'pixi.js';
import { ShakeEffectProps } from '../../interface/canvas/effect-props.cjs';
import '../../interface/TickerProgrationType.cjs';

/**
 * Shake the canvas element.
 * If there is a/more ticker(s) with the same alias, then the ticker(s) is/are paused.
 * @param alias
 * @param props
 * @param priority
 * @returns
 */
declare function shakeEffect(alias: string, props?: ShakeEffectProps, priority?: UPDATE_PRIORITY): Promise<void>;

export { shakeEffect };
