export interface ConnectionParams { id: string; } export declare const ErrorMessage: { readonly InvalidParams: "Params must be an object"; readonly InvalidId: "id must be a string"; }; export type ErrorMessage = (typeof ErrorMessage)[keyof typeof ErrorMessage]; export declare function assertConnectionParams(params: unknown): asserts params is { id: string; }; //# sourceMappingURL=validator.d.ts.map