import { Page, GetPageIdByUrlResponse } from '../types/page.type';
export interface CmsRepositoryInterface {
    getPageById(id: string): Promise<Page>;
    getPageByReferenceId(id: string): Promise<Page>;
    getPageIdByUrl(url: string): Promise<GetPageIdByUrlResponse>;
    getPageTime(id: string): Promise<number>;
}
