import { FromSchema } from 'json-schema-to-ts';
export declare const patsSchema: {
    readonly $id: "#/components/schemas/patsSchema";
    readonly type: "object";
    readonly properties: {
        readonly pats: {
            readonly type: "array";
            readonly items: {
                readonly $ref: "#/components/schemas/patSchema";
            };
        };
    };
    readonly components: {
        readonly schemas: {
            readonly patSchema: {
                readonly $id: "#/components/schemas/patSchema";
                readonly type: "object";
                readonly properties: {
                    readonly id: {
                        readonly type: "number";
                    };
                    readonly secret: {
                        readonly type: "string";
                    };
                    readonly expiresAt: {
                        readonly type: "string";
                        readonly format: "date-time";
                        readonly nullable: true;
                    };
                    readonly createdAt: {
                        readonly type: "string";
                        readonly format: "date-time";
                        readonly nullable: true;
                    };
                    readonly seenAt: {
                        readonly type: "string";
                        readonly format: "date-time";
                        readonly nullable: true;
                    };
                };
                readonly components: {
                    readonly schemas: {};
                };
            };
        };
    };
};
export declare type PatsSchema = FromSchema<typeof patsSchema>;
