import { z } from 'zod'; import { BasePropertySchema, TPropertyValue } from './common'; import { PropertyType } from './property-type'; import { MarkdownVariant } from '@activepieces/shared'; export declare const MarkDownProperty: z.ZodObject<{ type: z.ZodLiteral; required: z.ZodBoolean; defaultValue: z.ZodOptional; displayName: z.ZodString; description: z.ZodOptional; }, z.core.$strip>; export type MarkDownProperty = BasePropertySchema & TPropertyValue & { variant?: MarkdownVariant; }; //# sourceMappingURL=markdown-property.d.ts.map