declare type SetBackgroundTextStyleCallbackOptions = import("../../common").CallbackOptions; export interface SetBackgroundTextStyleOptions extends SetBackgroundTextStyleCallbackOptions { /** * 下拉背景字体、loading 图的样式。 * @value 'dark' dark 样式 * @value 'light' light 样式 */ textStyle: 'dark' | 'light'; } export {};