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