/** * represents an account's handle, using domains as a human-friendly * identifier. */ export type Handle = `${string}.${string}`; export declare const isHandle: (input: unknown) => input is `${string}.${string}`; //# sourceMappingURL=handle.d.ts.map