/** Usage type for authentication factors */ export declare const UsageEnum: { readonly Primary: "primary"; readonly Secondary: "secondary"; }; export type UsageEnum = (typeof UsageEnum)[keyof typeof UsageEnum];