import type { FromSchema } from 'json-schema-to-ts';
export declare const releasePlanTemplateIdSchema: {
    readonly $id: "#/components/schemas/releasePlanTemplateIdSchema";
    readonly additionalProperties: false;
    readonly description: "Schema for creating a release plan for a feature flag environment by copying and applying the configuration from a release plan template.";
    readonly type: "object";
    readonly required: readonly ["templateId"];
    readonly properties: {
        readonly templateId: {
            readonly type: "string";
            readonly description: "The release plan template's ID. Release template IDs are ulids.";
            readonly example: "01JB9GGTGQYEQ9D40R17T3YVW2";
            readonly nullable: false;
        };
    };
    readonly components: {};
};
export type ReleasePlanTemplateIdSchema = FromSchema<typeof releasePlanTemplateIdSchema>;
//# sourceMappingURL=release-plan-template-id-schema.d.ts.map