import { z } from 'zod';
import { Endpoint } from './common';
declare const licenseSchema: z.ZodObject<{
    validLicense: z.ZodBoolean;
    licenseType: z.ZodString;
    isCommercial: z.ZodBoolean;
    expiresAt: z.ZodNullable<z.ZodString>;
}, z.core.$strip>;
type License = z.infer<typeof licenseSchema>;
declare const getLicense: Endpoint;
export { licenseSchema, getLicense };
export type { License };
