import { Context, ViewConfig } from '../common/types'; import { Ref } from 'vue'; export declare const useViewActions: (type: Ref, { apis, reload, t, render, }: Pick) => { edit: (view: ViewConfig, cb?: () => void) => void; copy: (view: ViewConfig, cb?: () => void) => void; remove: (view: ViewConfig, cb?: () => void) => void; create: (cb?: () => void) => void; list: () => void; };