import { LinkProps } from 'react-router-dom'; /** * Properties for {@link RegisterExistingButton} * * @alpha */ export type RegisterExistingButtonProps = { title: string; } & Partial>; /** * A button that helps users to register an existing component. * @alpha */ export declare const RegisterExistingButton: (props: RegisterExistingButtonProps) => import("react/jsx-runtime").JSX.Element | null;