/**
 * Archive Options Prompt
 *
 * This module handles user interaction for configuring source file archiving
 * in the interactive CLI. It provides prompts for enabling archiving and
 * customizing the archive directory.
 *
 * @module
 */
/**
 * Result of the archive options prompt
 */
interface ArchivePromptResult {
    /** Whether archiving is enabled */
    enableArchiving: boolean;
    /** Custom archive directory (if provided) */
    archiveDirectory?: string;
}
/**
 * Prompt user for archive configuration options
 *
 * @returns Promise resolving to the archive configuration
 */
export declare function promptArchiveOptions(): Promise<ArchivePromptResult>;
export {};
//# sourceMappingURL=archive-options.d.ts.map