import { Brand } from 'effect'; /** * A plain hex-encoded token domain separator, 32 bytes in length. * * @category models */ export type DomainSeparator = Brand.Branded; export declare const DomainSeparator: Brand.Brand.Constructor & Brand.Brand<"DomainSeparator">>; /** * Creates a buffer representing the raw bytes of a token domain separator. * * @param self The {@link DomainSeparator} for which raw bytes are required. * @returns A `Uint8Array` representing the raw bytes of `self`. * * @category constructors */ export declare const asBytes: (self: DomainSeparator) => Uint8Array; //# sourceMappingURL=DomainSeparator.d.ts.map