import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; export declare const WebhookSubscription: core.serialization.ObjectSchema; export declare namespace WebhookSubscription { interface Raw { id?: string | null; name?: (string | null | undefined) | null; enabled?: (boolean | null | undefined) | null; event_types?: (string[] | null | undefined) | null; notification_url?: (string | null | undefined) | null; api_version?: (string | null | undefined) | null; signature_key?: string | null; created_at?: string | null; updated_at?: string | null; } }