import { __name } from "../../_virtual/_rolldown/runtime.js"; import { IconName, IconPrefix } from "../../node_modules/@fortawesome/fontawesome-common-types/index.js"; import { Properties } from "csstype"; //#region client/interface/textui.d.ts type IconAnimation = 'spin' | 'spinPulse' | 'spinReverse' | 'pulse' | 'beat' | 'fade' | 'beatFade' | 'bounce' | 'shake'; interface OptionsProps { position?: 'right-center' | 'left-center' | 'top-center' | 'bottom-center'; icon?: IconName | [IconPrefix, IconName]; iconColor?: string; iconAnimation?: IconAnimation; style?: Properties; alignIcon?: 'top' | 'center'; } declare const showTextUI: (text: string, options?: OptionsProps) => void; declare const hideTextUI: () => void; declare const isTextUIOpen: () => boolean; //#endregion export { hideTextUI, isTextUIOpen, showTextUI }; //# sourceMappingURL=textui.d.ts.map