import type { CSSProperties } from 'react'; import type { IShortcutConfig } from '../..'; interface IProps { firstUserSentence: string[]; mindId: string; onClick: (item: string) => void; style?: CSSProperties; inChatMode: boolean; inMobile: boolean; needLogin?: boolean; hasInitShortcut?: boolean; shortcutConfig: IShortcutConfig; isLoading: boolean; } declare function FirstSentence(props: IProps): JSX.Element; declare const _default: import("react").MemoExoticComponent; export default _default;