/** * @since 2.0.0 */ import * as CML from "@anastasia-labs/cardano-multiplatform-lib-nodejs"; /** * Type alias for the CML CredentialKind enum * * @since 2.0.0 * @category Types */ export type CredentialKind = CML.CredentialKind; /** * PubKey variant of the CredentialKind enum * * @since 2.0.0 * @category Variants */ export declare const PubKey = CML.CredentialKind.PubKey; /** * Script variant of the CredentialKind enum * * @since 2.0.0 * @category Variants */ export declare const Script = CML.CredentialKind.Script; /** * Get all values of the CredentialKind enum * * @since 2.0.0 * @category Utils */ export declare const values: () => Array; /** * Convert CredentialKind enum value to string * * @since 2.0.0 * @category Utils */ export declare const toString: (value: CML.CredentialKind) => string; /** * Convert string to CredentialKind enum value * * @since 2.0.0 * @category Utils */ export declare const fromString: (str: string) => CML.CredentialKind | undefined; //# sourceMappingURL=CredentialKind.d.ts.map