import { GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link Resource} for the original type. */ export type CreateResource = { tenantId?: string; id: string; name: string; indicator: string; isDefault?: boolean; accessTokenTtl?: number; }; export type Resource = { tenantId: string; id: string; name: string; indicator: string; isDefault: boolean; accessTokenTtl: number; }; export type ResourceKeys = 'tenantId' | 'id' | 'name' | 'indicator' | 'isDefault' | 'accessTokenTtl'; export declare const Resources: GeneratedSchema;