/**
 * Delta command - apply incremental pattern updates
 */
interface DeltaOptions {
    bullets?: string;
    file?: string;
    stdin?: boolean;
}
/**
 * Apply incremental pattern updates (add|update|remove)
 */
export declare function deltaCommand(operation: string, options: DeltaOptions): Promise<void>;
export {};
//# sourceMappingURL=delta.d.ts.map