import React from 'react'; import { TextProps } from '../../components/text'; import { PopoverProps } from 'antd/lib/popover'; import { SourceListProps } from '../source-list'; import './index.less'; export interface TextValueSourceProps extends PopoverProps { textProps?: TextProps; sourceListProps?: SourceListProps; loading?: boolean; } declare const TextValueSource: (props: TextValueSourceProps) => React.JSX.Element; export default TextValueSource;