This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 计算纹理的尺寸,保证纹理的尺寸是2次方。
* @param value 纹理的尺寸
* @returns number 纹理的尺寸是2次方
* @example
* ```
* floorPowerOfTwo(36)
* */
export declare function floorPowerOfTwo(value: number): number;