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 EmployeeWage: core.serialization.ObjectSchema; export declare namespace EmployeeWage { interface Raw { id?: string | null; employee_id?: (string | null | undefined) | null; title?: (string | null | undefined) | null; hourly_rate?: Money.Raw | null; } }