import { PrimaryKey } from '../../common/identifier'; export declare class AdminUserIdentifierHelper { static parse: (identifier: string) => Partial<{ id: PrimaryKey; }>; static stringify: (payload: Partial<{ id: PrimaryKey; }>) => string; static resolve(identifier: string): { type: string; id: PrimaryKey; }; static identify(identifier: string): boolean; } export declare class UserIdentifierHelper { static parse: (identifier: string) => Partial<{ id: PrimaryKey; }>; static stringify: (payload: Partial<{ id: PrimaryKey; }>) => string; static resolve(identifier: string): { type: string; id: PrimaryKey; }; static identify(identifier: string): boolean; } export declare class UserProfileIdentifierHelper { static parse: (identifier: string) => Partial<{ id: string; }>; static stringify: (payload: Partial<{ id: string; }>) => string; static resolve(identifier: string): { type: string; id: string; }; static identify(identifier: string): boolean; }