declare const __brand: unique symbol;
export declare type Branded<TPrimitive, TBrand> = TPrimitive & {
    [__brand]: TBrand;
};
export {};
