import React from "react"; export interface ILinkToolbarRenderProps { link: string; index: number; length: number; } export interface ILinkToolbarPluginProps { parentSelector?: string; verticalPadding?: number; render?: (value: ILinkToolbarRenderProps) => React.ReactNode; } declare function LinkToolbarPlugin(props: ILinkToolbarPluginProps): React.ReactElement; export { LinkToolbarPlugin };