import { Observable } from 'rxjs'; export interface ScullyRoute { route: string; title?: string; slugs?: string[]; published?: boolean; slug?: string; sourceFile?: string; lang?: string; [prop: string]: any; } export declare class ScullyRoutesService { private refresh; allRoutes$: Observable; available$: Observable; unPublished$: Observable; topLevel$: Observable; constructor(); getCurrent(): Observable; private cleanDups; reload(): void; }