import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CashDrawerShiftState } from "./CashDrawerShiftState"; import { Money } from "./Money"; export declare const CashDrawerShiftSummary: core.serialization.ObjectSchema; export declare namespace CashDrawerShiftSummary { interface Raw { id?: string | null; state?: CashDrawerShiftState.Raw | null; opened_at?: (string | null | undefined) | null; ended_at?: (string | null | undefined) | null; closed_at?: (string | null | undefined) | null; description?: (string | null | undefined) | null; opened_cash_money?: Money.Raw | null; expected_cash_money?: Money.Raw | null; closed_cash_money?: Money.Raw | null; created_at?: string | null; updated_at?: string | null; location_id?: string | null; } }