/// <reference types="react" />
import { Component } from 'react';
export default class WeekPicker extends Component<any, any> {
    static defaultProps: {
        format: string;
        allowClear: boolean;
    };
    constructor(props: any);
    componentWillReceiveProps(nextProps: any): void;
    weekDateRender: (current: any) => JSX.Element;
    handleChange: (value: any) => void;
    clearSelection: (e: any) => void;
    render(): JSX.Element;
}
