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