import { XcodeProjectType } from 'xcode';
import { XcodeTaskType } from '../../types/mod.types';
export declare function xcodeTask(args: {
    configPath: string;
    packageName: string;
    content: XcodeProjectType;
    task: XcodeTaskType;
}): Promise<XcodeProjectType>;
export declare function runTask(args: {
    configPath: string;
    packageName: string;
    task: XcodeTaskType;
}): Promise<void>;
export declare const summary = "Xcode project modification";
