import { FromSchema } from 'json-schema-to-ts';
export declare const idSchema: {
    readonly $id: "#/components/schemas/idSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["id"];
    readonly properties: {
        readonly id: {
            readonly type: "string";
        };
    };
    readonly components: {};
};
export declare type IdSchema = FromSchema<typeof idSchema>;
