import React from 'react'; export type SemanticType = 'root' | 'status' | 'content'; export interface ThinkProps extends Omit, 'title'> { prefixCls?: string; style?: React.CSSProperties; styles?: Partial>; className?: string; classNames?: Partial>; rootClassName?: string; title?: React.ReactNode; icon?: React.ReactNode; loading?: boolean | React.ReactNode; defaultExpanded?: boolean; expanded?: boolean; onExpand?: (expand: boolean) => void; blink?: boolean; } type ThinkRef = { nativeElement: HTMLElement; }; declare const Think: React.ForwardRefExoticComponent>; export default Think;