///
import { DivProps } from "../types";
export interface SpotlightProps extends DivProps {
/**
* @description The size of the spotlight circle
* @default 64
*/
size?: number;
}
declare const Spotlight: import("react").NamedExoticComponent;
export default Spotlight;