export type Secret = { id?: string; userId?: string; applicationId: string; name: string; value?: string; secret?: string; allowedNetwork: string; environment: string; usages?: number; usedAt?: Date; expiresAt?: Date; createdAt: Date; updatedAt: Date; deletedAt?: Date; }; export declare const expirationOptions: { readonly Forever: "forever"; readonly 'One hour': "oneHour"; readonly 'Six hours': "sixHours"; readonly 'Twelve hours': "twelveHours"; readonly 'One day': "oneDay"; readonly 'One week': "sevenDays"; readonly 'One month': "oneMonth"; }; export declare const expirationOptionsValues: ("forever" | "oneHour" | "sixHours" | "twelveHours" | "oneDay" | "sevenDays" | "oneMonth")[]; export type ValidExpirationOption = (typeof expirationOptions)[keyof typeof expirationOptions]; export declare const expirationTimeToDate: (option: ValidExpirationOption) => Date | undefined; //# sourceMappingURL=Secret.d.ts.map