import { int } from '../types/NativeAliases'; export declare class Uistickyfeed { /** * Returns state of sticky feed message, see 0x59FA676177DBE4C9 * * @param msgId * @returns */ static uiStickyFeedGetMessageState(msgId: int): int; /** * Example: https://pastebin.com/EJD7ytnz * * @param p2 * @returns p0; p1 */ static uiStickyFeedCreateErrorMessage(p2: boolean): [int, number, number]; /** * Example: https://pastebin.com/6mLtee2S * * @param p2 * @returns p0; p1 */ static uiStickyFeedCreateWarningMessage(p2: boolean): [int, number, number]; /** * Example: https://pastebin.com/JygJShNU * * @param p2 * @returns p0; p1 */ static uiStickyFeedCreateDeathFailMessage(p2: boolean): [int, number, number]; /** * @returns */ static uiStickyFeedIsAlertScreenActive(): any; /** * @param msgId */ static uiStickyFeedClearMessage(msgId: int): void; /** * stickyFeedChannel: https://github.com/Halen84/RDR3-Native-Flags-And-Enums/tree/main/eUIStickyFeedChannel * * @param stickyFeedChannel * @returns */ static uiStickyFeedIsChannelActive(stickyFeedChannel: int): any; /** * Seems to only update _UI_STICKY_FEED_CREATE_ERROR_MESSAGE(0x9F2CC2439A04E7BA) and _UI_STICKY_FEED_CREATE_DEATH_FAIL_MESSAGE(0x815C4065AE6E6071) message. * Example: https://pastebin.com/nDrJyWq2 * * @param msgId * @param p2 * @returns p1 */ static uiStickyFeedUpdateMessage(msgId: int, p2: boolean): number; } //# sourceMappingURL=Uistickyfeed.d.ts.map