import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { LoyaltyRewardStatus } from "./LoyaltyRewardStatus"; export declare const LoyaltyReward: core.serialization.ObjectSchema; export declare namespace LoyaltyReward { interface Raw { id?: string | null; status?: LoyaltyRewardStatus.Raw | null; loyalty_account_id: string; reward_tier_id: string; points?: number | null; order_id?: (string | null | undefined) | null; created_at?: string | null; updated_at?: string | null; redeemed_at?: string | null; } }