export declare const Identity: { readonly user: "user"; readonly nonUser: "non-user"; }; export type IdentityType = (typeof Identity)[keyof typeof Identity]; export declare const ClaimPosition: { readonly claimFor: "for"; readonly claimAgainst: "against"; }; export type ClaimPositionType = (typeof ClaimPosition)[keyof typeof ClaimPosition];