import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CashDrawerEventType } from "./CashDrawerEventType"; import { Money } from "./Money"; export declare const CashDrawerShiftEvent: core.serialization.ObjectSchema; export declare namespace CashDrawerShiftEvent { interface Raw { id?: string | null; event_type?: CashDrawerEventType.Raw | null; event_money?: Money.Raw | null; created_at?: string | null; description?: (string | null | undefined) | null; team_member_id?: string | null; } }