import type { EntityId } from "../../CustomTypes/EntityId";
import { isEntityId } from "../../CustomTypes/EntityId";
declare const altostraRoleIdSymbol: unique symbol;
export declare type AltostraRoleId = EntityId & {
    [altostraRoleIdSymbol]: unknown;
};
export { isEntityId as isAltostraRoleId };
export declare function altostraRoleId(value: string): AltostraRoleId;
