import React from 'react'; export interface DoomFireTorchProps { height?: number; width?: number; pixelSize?: number; fireColors?: string[]; fireEnabled?: boolean; fireStrength?: number; fireRadius?: number; flammable?: Set; fireDecay?: number; } /** * * @param height {number} Height of canvas in pixels. * @param width {number} Width of canvas in pixels. * @param pixelSize {number} How big a pixel should be in the output. Larger means more pixelated. * @param fireColors {string[]} Array of CSS color values. * @param fireEnabled {boolean} If the fire is on. * @param fireStrength {number} Number between 0 and 1, represents the "strength" of the fire. * @param fireRadius {number} Radius of fire. * @param flammable {String} Pixels that can catch fire. * @param fireDecay {number} How fast the fire decays * @constructor */ declare const DoomFireTorch: ({ height, width, pixelSize, fireColors, fireEnabled, fireStrength, fireRadius, flammable, fireDecay, }: DoomFireTorchProps) => React.JSX.Element; export { DoomFireTorch };