import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { JobAssignmentPayType } from "./JobAssignmentPayType"; import { Money } from "./Money"; export declare const JobAssignment: core.serialization.ObjectSchema; export declare namespace JobAssignment { interface Raw { job_title?: (string | null | undefined) | null; pay_type: JobAssignmentPayType.Raw; hourly_rate?: Money.Raw | null; annual_rate?: Money.Raw | null; weekly_hours?: (number | null | undefined) | null; job_id?: (string | null | undefined) | null; } }