import type { Editor as TiptapEditor } from '@tiptap/core'; import type { ForwardProps } from '@pega/cosmos-react-core'; import type { LinkCustomSourceConfig } from '../Editor.types'; interface AnchorButtonProps { osx: boolean; editor: TiptapEditor; linkCustomSource?: LinkCustomSourceConfig; } declare const AnchorButton: ({ osx, editor, linkCustomSource, ...restProps }: AnchorButtonProps & ForwardProps) => import("react/jsx-runtime").JSX.Element; export default AnchorButton; //# sourceMappingURL=AnchorButton.d.ts.map