import { Ref } from "react"; import {IList} from "./IList"; import {ISettings} from "./ISettings"; export interface PropPage { page: IList; url: string; settings: ISettings; passphrase: string; remove: (id) => void; ref: Ref; }