import type { NonEmptyString } from "../../../../common/CustomTypes/NonEmptyString";
declare const endpointLabelSym: unique symbol;
export declare type EndpointLabel = NonEmptyString & {
    [endpointLabelSym]: unknown;
};
export declare function isEndpointLabel(value: unknown): value is EndpointLabel;
export declare function assertEndpointLabel(value: unknown): asserts value is EndpointLabel;
export declare function endpointLabel(value: string): EndpointLabel;
export {};
