import * as PropTypes from 'prop-types';
export default class Routable {
    static getPropTypes(required: boolean): {
        location: PropTypes.Validator<string>;
        locationProps: PropTypes.Validator<string>;
    };
}
