import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Money } from "./Money"; export declare const TimecardWage: core.serialization.ObjectSchema; export declare namespace TimecardWage { interface Raw { title?: (string | null | undefined) | null; hourly_rate?: Money.Raw | null; job_id?: string | null; tip_eligible?: (boolean | null | undefined) | null; } }