import * as React from 'react';
import { UpLabelProps } from './types';
export default class UpLabel extends React.Component<UpLabelProps, {}> {
    static defaultProps: {
        text: string;
        disabled: boolean;
        required: boolean;
        textAlign: string;
        color: string;
    };
    constructor(props: any);
    onFocus: (e: any) => boolean;
    onClick: (e: any) => boolean;
    render(): JSX.Element;
}
