import type { DetailedHTMLProps, HTMLAttributes, PropsWithChildren } from 'react'; import React from 'react'; /** Props for {@link GlowingDiv}. */ export interface GlowingDivProps extends DetailedHTMLProps, HTMLDivElement>, PropsWithChildren { hash?: string; } /** Div that briefly glows when its hash matches a re-clicked nested bound witness. */ export declare const GlowingDiv: { ({ ref, hash, children, ...props }: GlowingDivProps): React.JSX.Element; displayName: string; }; //# sourceMappingURL=GlowingDiv.d.ts.map