import {IList} from "./IList"; import * as React from "react"; export interface IPages { pages: IList[]; url: string; removeUrl: string; csrf: string; passphrase: string; loadPages: React.MutableRefObject<() => void>; setAllLoaded: React.Dispatch>; }