import { z } from "zod";
export declare const LocationSchema: z.ZodUnion<[z.ZodObject<{
    city: z.ZodString;
    state: z.ZodString;
}, "strip", z.ZodTypeAny, {
    city: string;
    state: string;
}, {
    city: string;
    state: string;
}>, z.ZodObject<{
    latitude: z.ZodString;
    longitude: z.ZodString;
}, "strip", z.ZodTypeAny, {
    latitude: string;
    longitude: string;
}, {
    latitude: string;
    longitude: string;
}>, z.ZodObject<{
    zipcode: z.ZodString;
}, "strip", z.ZodTypeAny, {
    zipcode: string;
}, {
    zipcode: string;
}>]>;
export declare function startServer(): Promise<void>;
