export default class Affix extends React.PureComponent<any, any, any> {
    static defaultProps: {
        numberOfLines: number;
    };
    static propTypes: {
        numberOfLines: PropTypes.Requireable<number>;
        style: any;
        color: PropTypes.Validator<string>;
        fontSize: PropTypes.Validator<number>;
        type: PropTypes.Validator<string>;
        labelAnimation: PropTypes.Validator<Animated.Value>;
        children: PropTypes.Requireable<string | number | boolean | PropTypes.ReactElementLike | PropTypes.ReactNodeArray>;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    render(): JSX.Element;
}
import React from "react";
import PropTypes from "prop-types";
import { Animated } from "react-native";
