//#region src/navigation/navigation.types.d.ts declare namespace Navigation { /** Direction to navigate: backward or forward. */ type Direction = 'prev' | 'next'; /** Unit to navigate by: one month, one year, or ten years. */ type Unit = 'month' | 'year' | 'decade'; } //#endregion export { Navigation as t };