export type AmountScreenMessage = Readonly<{
    type: "error" | "warning" | "info";
    text: string;
}>;
export declare function getAmountScreenMessage(params: {
    amountErrorTitle?: string;
    amountWarningTitle?: string;
    isFeeTooHigh: boolean;
    hasRawAmount: boolean;
}): AmountScreenMessage | null;
//# sourceMappingURL=messages.d.ts.map