import { trpc } from '.'; export declare const computeLength: trpc.TRPCEndpoint<() => (str: string) => number>; export declare const testEndpoint: trpc.TRPCEndpoint<(_ctx: any) => (id: string) => number>; export declare const createPost: trpc.TRPCEndpoint<(ctx: { token: string; }) => (content: string) => Promise<{ content: string; token: string; }>>; export declare const rootRouter: trpc.TRPCRouter<{ user: trpc.TRPCRouter<{}, { testEndpoint: trpc.TRPCEndpoint<(_ctx: any) => (id: string) => number>; createPost: trpc.TRPCEndpoint<(ctx: { token: string; }) => (content: string) => Promise<{ content: string; token: string; }>>; }>; }, { getContext: trpc.TRPCEndpoint<(ctx: any) => () => any>; }>; export declare const checkLocal: (host: string) => boolean; export declare const app: import("express-serve-static-core").Express;