import React from 'react';
import { PureComponent } from '../component';
import { InputTitleProps } from './Props';
interface InputTitleState {
    animation: boolean;
}
declare class InputTitle extends PureComponent<InputTitleProps, InputTitleState> {
    constructor(props: InputTitleProps);
    componentDidUpdate(prevProps: InputTitleProps): void;
    startAnimation(): void;
    stopAnimation(): void;
    render(): React.ReactNode;
}
export default InputTitle;
