import { z } from 'zod';
import { UnitType } from '../../../_dashboards/dashboard-visualisation/Validate';
declare const LineTimeseriesChartSchemas: {
    LineTimeseriesMeasureSchema: z.ZodObject<{
        id: z.ZodString;
        display: z.ZodOptional<z.ZodString>;
        type: z.ZodOptional<z.ZodString>;
        unit: z.ZodOptional<z.ZodEnum<typeof UnitType>>;
    }, z.core.$strip>;
    LineTimeseriesSchema: z.ZodObject<{
        display: z.ZodString;
        type: z.ZodLiteral<"line-timeseries">;
        options: z.ZodOptional<z.ZodObject<{
            showLatest: z.ZodLiteral<false>;
        }, z.core.$strip>>;
        columns: z.ZodObject<{
            measures: z.ZodArray<z.ZodObject<{
                id: z.ZodString;
                display: z.ZodOptional<z.ZodString>;
                type: z.ZodOptional<z.ZodString>;
                unit: z.ZodOptional<z.ZodEnum<typeof UnitType>>;
            }, z.core.$strip>>;
            keys: z.ZodOptional<z.ZodArray<z.ZodObject<{
                id: z.ZodString;
                display: z.ZodOptional<z.ZodString>;
                optional: z.ZodDefault<z.ZodBoolean>;
                type: z.ZodOptional<z.ZodString>;
            }, z.core.$strip>>>;
            filters: z.ZodOptional<z.ZodArray<z.ZodObject<{
                id: z.ZodString;
                equals: z.ZodNullable<z.ZodString>;
            }, z.core.$strip>>>;
            expectNulls: z.ZodDefault<z.ZodBoolean>;
        }, z.core.$strip>;
        id: z.ZodString;
        description: z.ZodOptional<z.ZodString>;
    }, z.core.$strip>;
};
export default LineTimeseriesChartSchemas;
