import type { EntityId } from "../../CustomTypes/EntityId";
declare const logIntegrationIdSymbol: unique symbol;
export declare type LogIntegrationId = EntityId & {
    [logIntegrationIdSymbol]: unknown;
};
export declare function isLogIntegrationId(val: unknown): val is LogIntegrationId;
export declare function validateLogIntegrationId(val: string): asserts val is LogIntegrationId;
export declare function logIntegrationId(value?: string): LogIntegrationId;
export {};
