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