import { AppDelegateTaskType } from '../types/mod.types';
export declare function appDelegateTask(args: {
    configPath: string;
    packageName: string;
    content: string;
    task: AppDelegateTaskType;
}): Promise<string>;
export declare function runTask(args: {
    configPath: string;
    packageName: string;
    task: AppDelegateTaskType;
}): Promise<void>;
export declare const summary = "AppDelegate modification";
