import { RaxNode } from "rax"; export interface FieldsType { title?: string; help?: { title: string; icon: string; content: string[]; }; supportFold: boolean; total?: number; foldCount?: number; unfoldTips?: string; foldTips?: string; } export interface HelpPayCardProps { fields: FieldsType; children: RaxNode[]; }