/**
 * @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 {};
