import * as React from 'react'; type Props = { expand: boolean; show: boolean; onClick: () => void; }; declare const TextFieldExpandButton: React.FC; export default TextFieldExpandButton;