export interface DepositReceivedToastProps { /** The amount that landed, e.g. "$99.50 deposit received". */ title: string; /** Where it came from, e.g. "from ApplePay". */ detail: string; } /** * The deposit confirmation that replaces the payment sheet. * * - Owns no timer and no positioning: whatever mounts it decides both. * - Outlives the sheet — the flow closes on a cleared charge, and this is what * says the money arrived. * - Glass like GlassSheetBackground: glass owns the tint, so the fill drops * out under it rather than flattening the refraction. */ export declare function DepositReceivedToast({ title, detail, }: DepositReceivedToastProps): import("react").JSX.Element; //# sourceMappingURL=DepositReceivedToast.d.ts.map