///
import { ISinglePropsWithDefault, ISingleTriggerProps, ISinglePanelProps } from '../types';
interface ISinglePickerProps extends ISinglePropsWithDefault, Pick {
PanelComponent: React.ComponentType;
}
export declare function SinglePicker({ value, onChange, onOpen, onClose, disabledDate, ...restProps }: ISinglePickerProps): JSX.Element;
export declare namespace SinglePicker {
var defaultProps: {
canClear: boolean;
width: number;
};
}
export default SinglePicker;