import { UI } from "./index"; export declare namespace SearchLayouts { interface SearchItemLayoutBase extends UI.Layout { title: UI.Text; content?: UI.View; avatar?: UI.Avatar; meta?: UI.View; } class BasicSearchItemLayout implements SearchItemLayoutBase { constructor(params: { title: UI.Text; content: UI.Text; meta: UI.Text; }); content: UI.Text; meta: UI.Text; title: UI.Text; } class SearchHistoryItemLayout implements SearchItemLayoutBase { constructor(params: { title: UI.Text; meta: UI.Text; }); title: UI.Text; meta: UI.Text; } }