import React from 'react'; export interface LightsOutProps { size?: number; darkColor?: string; clickToTurnOnLights?: boolean; zIndex?: number; onLightsOnStart?: (() => void) | undefined; onLightsOnEnd?: (() => void) | undefined; } declare function LightsOut({ size, darkColor, clickToTurnOnLights, zIndex, onLightsOnStart, onLightsOnEnd, }: LightsOutProps): React.JSX.Element; export { LightsOut };