/** * @public * @enum */ export declare const TargetType: { readonly ACCOUNT: "ACCOUNT"; }; /** * @public */ export type TargetType = (typeof TargetType)[keyof typeof TargetType];