/** * 关闭其他界面(结束所有调用过 autoFinish 的界面) */ declare function finishOther(): void; /** * 设置界面自动关闭(接收到关闭广播 finishOther,关闭界面) */ declare function autoFinish(): void; /** * 标记页面 ID(用于关闭指定的界面) * * @since 6.25 * @param id - 页面 ID */ declare function flagPageId(id: string): void; /** * 关闭指定 ID 的界面 * * @since 6.25 * @param id - 页面 ID 集合 */ declare function finishPageById(ids: string[]): void; declare const _default: { finishOther: typeof finishOther; autoFinish: typeof autoFinish; flagPageId: typeof flagPageId; finishPageById: typeof finishPageById; }; export default _default;