import React from 'react'; interface Item { value: string; label: string; } interface IProps { value?: any; onChange?: (items: Item[]) => void; placeholder?: string; disabled?: boolean; style?: any; content?: string; } export declare const Text: React.FC; export default Text;