export interface NavbarRightButton { /** * 右上角图片(客户端图片大小是 48px48px 左右,传入图片不能太小,最好是正方形) */ icon?: string; /** * 极速版图标地址 */ speedIcon?: string; /** * 右上角文案 */ text?: string; onClick?: () => void; } /** * 刷新顶部左上角按钮接口 * * @param options - 按钮配置项 */ declare function setNavbarRightButton(options: NavbarRightButton): void; export default setNavbarRightButton;