import type { ReactNode } from 'react'; export interface FiatReceiptProps { /** Draws the warning-ringed glyph rather than the neutral one. */ restricted: boolean; title: string; /** Label on the support link, which every receipt carries. */ supportLabel: string; detail?: string; /** The footer; each receipt fills it with its own actions. */ children?: ReactNode; } /** * The layout every terminal fiat receipt wears: a glyph, a line saying where * the buyer stands, a support link, and whatever action is left. * * Presentational only — it decides nothing. The wording, the glyph and the * actions all come from the screen that renders it, so the identity outcomes * and the region refusal cannot drift apart. */ export declare function FiatReceipt({ restricted, title, supportLabel, detail, children, }: FiatReceiptProps): import("react").JSX.Element; //# sourceMappingURL=FiatReceipt.d.ts.map