import { TranslationBundle } from '@jupyterlab/translation';
import { Widget } from '@lumino/widgets';
/**
 * The UI for the form fields shown within the Clone modal.
 */
export declare class GitCloneForm extends Widget {
    /**
     * Create a redirect form.
     * @param translator - The language translator
     */
    constructor(trans: TranslationBundle);
    /**
     * Returns the input value.
     */
    getValue(): {
        url: string;
        versioning: boolean;
        submodules: boolean;
    };
    private static createFormNode;
}
