import { StepContext } from '../_types/context';
/**
 * Clones the Git repository into the workspace directory.
 * If a branch is specified, it will check out that branch.
 *
 * @param ctx - Pipeline execution context
 */
export declare function gitCloneRepo(ctx: StepContext): Promise<void>;
