UNPKG

@atlaskit/editor-plugin-avatar-group

Version:

Avatar Group plugin for @atlaskit/editor-core.

16 lines (15 loc) 557 B
/** * @jsxRuntime classic * @jsx jsx */ import React, { type PropsWithChildren } from 'react'; import { jsx } from '@emotion/react'; import type { InviteToEditComponentProps } from '@atlaskit/editor-common/collab'; type InviteToEditButtonProps = PropsWithChildren<{ Component?: React.ComponentType<React.PropsWithChildren<InviteToEditComponentProps>>; onClick?: React.MouseEventHandler; selected?: boolean; title: string; }>; export declare const InviteToEditButton: (props: InviteToEditButtonProps) => jsx.JSX.Element | null; export {};