/// import './style//index.less'; interface EventEmitter { emit: (eventName: string, ...args: any) => void; } interface MatterTitleProps { record: any; matterType: string; value: string; showId?: boolean; copyTooltips?: string; titleClick?: (record: any) => void; eventEmitter?: EventEmitter; } export declare function MatterTitle(props: MatterTitleProps): JSX.Element; export {};