import type { PromiseAction, ExcludeOption } from '../type';
type SetTopBarTextOption = ExcludeOption<Taro.setTopBarText.Option>;
export type Set = PromiseAction<SetTopBarTextOption['text']>;
declare function useTopBarText(text?: string): Set;
export default useTopBarText;