import { Vault } from 'obsidian-utils';
import { CommonFlags } from '../types/commands';
export declare const flagsInterceptor: <T extends CommonFlags>(flags: T) => T;
export declare const handlerCommandError: (error: unknown) => Promise<void> | undefined;
export declare const asyncExecCustomCommand: (vault: Vault, command: string, cwd: string) => Promise<string>;
