declare class Page { name: string; url: string; constructor(name: string, url: string); toString(): string; } export { Page };