export declare enum IdentifierForEnum { PERSON = "person", COMPANY = "company" } declare class IdentifierFor { getValue(key: string): string; } declare const _default: IdentifierFor; export default _default;