import type { contextOf } from "./trpc"; export declare class UserRoute { sayHello(name: string): string; } export declare class UserRouteWithCustomName { whoAmI(ctx: contextOf["auth"], input: { pronounce: string; }): string; updateName(input: { name: string; }): { newName: string; }; }