import type { Report } from '../types.ts';
type Options = {
    root: string;
    androidPath: string;
    report: Report;
};
export default function androidAssemble({ root, androidPath, report, }: Options): Promise<void>;
export {};
