import type { PredNode } from '@struktoai/mirage-core/commands/builtin/find_eval'; import type { PathSpec } from '@struktoai/mirage-core/types'; import type { SSHAccessor } from '../../accessor/ssh.ts'; export interface FindOptions { name?: string | null; type?: string | null; minSize?: number | null; maxSize?: number | null; maxDepth?: number | null; minDepth?: number | null; nameExclude?: string | null; orNames?: string[] | null; iname?: string | null; pathPattern?: string | null; empty?: boolean | null; tree?: PredNode | null; mtimeMin?: number | null; mtimeMax?: number | null; } export declare function find(accessor: SSHAccessor, p: PathSpec, options?: FindOptions): Promise; //# sourceMappingURL=find.d.ts.map