export interface SpotlightProps {
target: HTMLDivElement | undefined;
onOverlayClick: () => void;
show: boolean;
position: "absolute" | "fixed";
}
export declare function Spotlight(props: SpotlightProps): import("react/jsx-runtime").JSX.Element | null;