import type { Input } from '../types.ts'; type Options = Omit & { options?: { script?: string; clean?: string; }; }; export default function customTarget({ options, root, report }: Options): Promise; export {};