import type { CommonName } from './CommonName'; import type { CommonTimestampInteger } from './CommonTimestampInteger'; import type { Secret } from './Secret'; /** * Credentials object associated with an app */ export declare type Credentials = { expiresAt?: number; issuedAt?: CommonTimestampInteger; secret?: Secret; name?: CommonName; };