import { ActionContext } from 'vuex'; import type { Obj, Fn, ActionContextInfer } from 'vuex-dispatch-infer'; export declare type ActionInfer> = ActionContext & ActionContextInfer; export interface PageCursor { has_next: boolean; has_prev: boolean; next_cursor: string; prev_cursor: string; next: string; prev: string; } export interface Image { ident: string; original_width: number; original_height: number; max_width: number; data_url?: string; max_height: number; url_pattern: string; }