/** * @jsxRuntime classic * @jsx jsx */ import React from 'react'; import type { WithIntlProps, WrappedComponentProps } from 'react-intl'; import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics'; import type { FindReplaceProps } from './FindReplace'; export interface FindReplaceToolbarButtonProps extends Omit { dispatchAnalyticsEvent?: DispatchAnalyticsEvent; index: number; isActive: boolean; isButtonHidden?: boolean; isReducedSpacing?: boolean; numMatches: number; numReplaceable?: number; onActivate: () => void; popupsBoundariesElement?: HTMLElement; popupsMountPoint?: HTMLElement; popupsScrollableElement?: HTMLElement; takeFullWidth: boolean; } declare const _default_1: React.FC> & { WrappedComponent: React.ComponentType; }; export default _default_1;