import { AnimatedSprite, AnimatedSpriteOptions, SpritesheetData } from "pixi.js";
type UseAnimatedSpriteOptions = Omit<AnimatedSpriteOptions, "textures" | "texture"> & {
    texture: string;
    animation: string;
    spritesheet: SpritesheetData;
    animationSpeed: number;
    isPlaying: boolean;
};
export declare const useAnimatedSprite: ({ texture, spritesheet: spritesheetJSON, animation, animationSpeed, isPlaying, ...options }: UseAnimatedSpriteOptions) => AnimatedSprite | null;
export {};
