import React from 'react'; import type { ClassNamesFn, RendererProps } from 'jamis-core'; import type { RemarkSchema, TooltipObject } from '../types'; export interface RemarkProps extends RendererProps, Omit { icon: string; trigger: Array<'hover' | 'click' | 'focus'>; } export declare class Remark extends React.Component { static propsList: Array; static defaultProps: Partial; showModalTip(tooltip?: string | TooltipObject): (e: React.MouseEvent) => void; renderLabel(finalIcon: any, finalLabel: string, cx: ClassNamesFn): JSX.Element; render(): JSX.Element | null; } export declare class RemarkRenderer extends Remark { }