pub mod backend;
pub mod chromium;
pub mod keymap;
pub mod models;
pub mod perception;
pub mod profile;
pub mod recorder;
pub mod screencast;
pub mod tabs;
pub mod tools;
pub use backend::{BrowserBackend, BrowserError};
pub use chromium::{ChromiumBackend, HistoryStep};
pub use models::{A11yNode, Bounds, Modifier, Viewport, WaitCondition};
pub use recorder::{Recording, RecordingHandle};
pub use screencast::{FrameReceiver, ScreencastFrame, ScreencastPump, FRAME_CHANNEL_CAP};
pub use tabs::{TabError, TabEvent, TabId, TabInfo, TabsSnapshot};
pub use tools::BrowserToolExecutor;