import React from 'react'; interface PeriodDisplayProps { startDate: string; endDate: string; style?: any; } declare const PeriodDisplay: ({ startDate, endDate, style }: PeriodDisplayProps) => React.JSX.Element; export default PeriodDisplay;