import { ComponentPropsWithoutRef } from 'react'; import { Rect } from 'react-use-rect'; type UpdatePropsBase = { id: string; label: string; description?: string; tags?: string[]; rss?: { title?: string; description?: string; }; onRegisterHeading?: (id: string, rect: Rect) => void; onUnregisterHeading?: (id: string) => void; hasContext?: boolean; isVisible: boolean; onCopyAnchorLink?: (id: string) => void; }; type UpdateProps = UpdatePropsBase & Omit, keyof UpdatePropsBase>; declare const Update: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref">, keyof UpdatePropsBase> & import('react').RefAttributes>; export { Update }; export type { UpdateProps }; //# sourceMappingURL=update.d.ts.map