export interface IProjectKeys {
    jwt?: {
        publicKey: string;
        previousPublicKey?: string | null;
        keyUpdatedAt?: Date;
    };
    secret?: {
        key: string;
        keyUpdatedAt?: Date;
    };
}
