import { Texture } from 'pixi.js';
import TextureMemory from '../../interface/canvas/TextureMemory.js';

/**
 * Get the memory object of the PixiJS texture
 * @param texture PixiJS Texture object
 * @returns Memory object of the texture
 */
declare function getTextureMemory(texture: Texture, alias?: string): TextureMemory;
declare function checkIfVideo(textureAlias: string): boolean;

export { checkIfVideo, getTextureMemory };
