import { z } from "../../shared/zod";
/**
 * Terminal information with identifier and display name.
 */
export declare const terminalSchema: z.ZodObject<{
    TerminalID: z.ZodNumber;
    Description: z.ZodString;
}, z.core.$strip>;
export type Terminal = z.infer<typeof terminalSchema>;
/**
 * Array of terminal records returned by terminal list endpoints.
 */
export declare const terminalListSchema: z.ZodArray<z.ZodObject<{
    TerminalID: z.ZodNumber;
    Description: z.ZodString;
}, z.core.$strip>>;
export type TerminalList = z.infer<typeof terminalListSchema>;
//# sourceMappingURL=terminals.output.d.ts.map