declare const __brand: unique symbol;
type Brand<B> = {
    [__brand]: B;
};
export type Branded<T, B> = T & Brand<B>;
export type LoosenBrand<T extends Branded<unknown, unknown>> = Omit<T, typeof __brand> & {
    [__brand]?: T[typeof __brand];
};
export type BrandedLoosely<T, B> = LoosenBrand<Branded<T, B>>;
export {};
//# sourceMappingURL=brand.type.d.ts.map