import { Action } from '@prefecthq/vue-compositions'; export type ItemType = 'Flow' | 'Deployment' | 'Flow run' | 'Work queue' | 'Block' | 'Notification' | 'Task run' | 'Concurrency Limit' | 'Work pool' | 'Schedule' | 'Worker'; type MaybeSingleParam> = Params extends [unknown] ? Params[0] | Params : Params; export declare function deleteItem(args: MaybeSingleParam, endpoint: T, type: ItemType): Promise | void>; export {};