/** One `label · value` line of the breakdown. */ export interface FeeDetailsRow { label: string; /** * The run inside `label` the design dims — the fee's rate. Passed as the * substring rather than a second string, since locales seat the rate * mid-sentence ("Comisión del 0.50%") or lead with it ("0.50% ücret"). */ rate?: string; value: string; /** * The summed line the rest add up to — set in semibold, and the only row the * design emphasises. */ isTotal?: boolean; } export interface FeeDetailsScreenProps { /** * What the fees are and where they land, in prose. Omitted when the host * hasn't named a payment method. */ summary?: string; rows: FeeDetailsRow[]; /** False when the host has bought the mark off. */ showAttribution?: boolean; } /** * The fee disclosure drawer. Opened from the fee line on the amount screen, it * presents the transaction's top-level cost: a written summary of the fee, then * the amount, the fee and what the two come to. * * Presented through `Drawer`, which draws the grabber and owns the gesture, * the backdrop and accessibility escape — the drawer's only ways out. */ export declare function FeeDetailsScreen({ summary, rows, showAttribution, }: FeeDetailsScreenProps): import("react").JSX.Element; //# sourceMappingURL=FeeDetailsScreen.d.ts.map