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