import React from 'react'; /** * HUD 抽屉里的「支付状态」快筛桶配置: * * - **未支付**:unpaid / partially_paid / payment_processing * - `paymentStatusForMatch` 把 `partially_paid` 归一为 `unpaid`, * 不带 `partially_paid` 同一行会因发起 / 已部分付不一致漏选; * - `payment_processing` 业务侧定义为待回执(未到账),同入未支付。 * - **已支付**:paid / partially_refunded / refunded * - 退款语义上"曾支付过",与底层卡片 `PaymentStamp` 的"已盖章"判定一致。 * - **不入桶**:authorized / voided —— booking 业务里几乎不出现(仅 order 直购流程可能出现), * 刻意不进入这两个桶,避免桶语义被边角态污染。如未来业务需要可在 buckets 加 key。 */ export interface ReservationPaymentStatusButtonFilterProps { value?: string[]; onChange?: (v: string[]) => void; } export declare function ReservationPaymentStatusButtonFilter(props: ReservationPaymentStatusButtonFilterProps): React.JSX.Element; export default ReservationPaymentStatusButtonFilter;