import { FromSchema } from 'json-schema-to-ts';
export declare const createFeatureSchema: {
    readonly $id: "#/components/schemas/createFeatureSchema";
    readonly type: "object";
    readonly required: readonly ["name"];
    readonly properties: {
        readonly name: {
            readonly type: "string";
        };
        readonly type: {
            readonly type: "string";
        };
        readonly description: {
            readonly type: "string";
        };
        readonly impressionData: {
            readonly type: "boolean";
        };
    };
    readonly components: {};
};
export declare type CreateFeatureSchema = FromSchema<typeof createFeatureSchema>;
