import React from 'react'; interface DateWrapperProps { isExpanded: boolean; targetRef: React.RefObject; alignment?: 'left' | 'right' | 'match-width'; } declare const DateWrapper: React.ForwardRefExoticComponent>; export default DateWrapper;