import { type GlobOptions } from 'tinyglobby';
import type { MemFsEditor } from '../index.ts';
export default function deleteAction(this: MemFsEditor, paths: string | string[], options?: {
    globOptions?: Omit<GlobOptions, 'patterns' | 'absolute' | 'onlyFiles'>;
}): void;
