import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Format } from "./Format"; import { FormatDescription } from "./FormatDescription"; export declare const Measure: core.serialization.ObjectSchema; export declare namespace Measure { interface Raw { name: string; title?: string | null; shortTitle?: string | null; description?: string | null; type: string; aggType?: string | null; meta?: Record | null; format?: Format.Raw | null; formatDescription?: FormatDescription.Raw | null; currency?: string | null; aliasMember?: string | null; } }