import * as React from 'react';
export default class HorizontalLines extends React.Component<any, any> {
    static defaultProps: {
        borderWidth: number;
    };
    shouldComponentUpdate(nextProps: any, nextState: any): boolean;
    render(): JSX.Element;
}
