import { z } from "zod"; import { BasePieceAuthSchema } from "./common"; import { TPropertyValue } from "../input/common"; import { PropertyType } from "../input/property-type"; export declare const SecretTextProperty: z.ZodObject<{ type: z.ZodLiteral; required: z.ZodBoolean; defaultValue: z.ZodOptional; displayName: z.ZodString; description: z.ZodOptional; }, z.core.$strip>; export type SecretTextProperty = BasePieceAuthSchema & TPropertyValue; //# sourceMappingURL=secret-text-property.d.ts.map