import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Break } from "./Break"; import { Money } from "./Money"; import { ShiftStatus } from "./ShiftStatus"; import { ShiftWage } from "./ShiftWage"; export declare const Shift: core.serialization.ObjectSchema; export declare namespace Shift { interface Raw { id?: string | null; employee_id?: (string | null | undefined) | null; location_id: string; timezone?: (string | null | undefined) | null; start_at: string; end_at?: (string | null | undefined) | null; wage?: ShiftWage.Raw | null; breaks?: (Break.Raw[] | null | undefined) | null; status?: ShiftStatus.Raw | null; version?: number | null; created_at?: string | null; updated_at?: string | null; team_member_id?: (string | null | undefined) | null; declared_cash_tip_money?: Money.Raw | null; } }