namespace QWERTYkez.ExcelProcessor; public interface IExcelReader { long DocumentSize { get; } string? FilePath { get; } bool IsValid { get; } ISet FindPlaceholders(); bool TryWrite(string destinationPath, Action action); bool TryWrite(Action write, Action read); }