export type GetPathsOutput = { module: string; paths: string[]; }; export interface IRewriteUrlProvider { getPaths(): Promise; getPage(path: any, params: any, type: any, request: any): Promise; getMetaData(path: any, params: any, type: any, request: any): Promise; }