/// declare type Props = { to: Date; from: Date; format: string; }; declare const Duration: { ({ from, to, format }: Props): JSX.Element; defaultProps: { format: string; }; }; export default Duration;