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