import type { TransactionsRecord } from "@olenbetong/appframe-updater"; export type UseTransactionTextOptions = { transaction: TransactionsRecord | undefined; statusPreviewValue: string; frameWidth: number; }; export type UseTransactionTextResult = { text: string[]; dialogWidth: number; }; export declare function useTransactionText({ transaction, statusPreviewValue, frameWidth, }: UseTransactionTextOptions): UseTransactionTextResult;