Statement.ExportDefaultDeclaration
type t('M, 'T) = {
default: 'M,
declaration: declaration('M, 'T),
comments: option(Syntax.t('M, unit)),
};
and declaration('M, 'T) =
| Declaration(Statement.t('M, 'T))
| Expression(Expression.t('M, 'T))
;