import { Component } from 'react';
import { CalculateProps } from '../utils/PropTypes';
export default class SsCalculate extends Component<CalculateProps, any> {
    private subscription;
    static defaultProps: {
        required: boolean;
        textAlign: string;
        upper: boolean;
    };
    constructor(props: any);
    componentDidMount(): void;
    componentWillUnmount(): void;
    refresh: (values: any) => void;
    render(): JSX.Element;
}
