/** A secret */
export interface Secret {
    /** Expiration time of the secret */
    expiration: string;
    /** The secret */
    secret: string;
}
//# sourceMappingURL=Secret.d.ts.map