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