import type * as CandidApi from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { RegionNational } from "./RegionNational"; import { RegionStates } from "./RegionStates"; export declare const Regions: core.serialization.Schema; export declare namespace Regions { type Raw = Regions.States | Regions.National; interface States extends RegionStates.Raw { type: "states"; } interface National extends RegionNational.Raw { type: "national"; } }