import { FromSchema } from 'json-schema-to-ts';
export declare const 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 PatSchema = FromSchema<typeof patSchema>;
