import { Lane } from "../Lane";
export declare type IOSLane = Lane & {
    type: 'ios';
};
export declare function ios(lanes: IOSLane[]): Promise<void>;
export declare function ios(lanes: IOSLane[], projectDirectory: string): Promise<void>;
