export type Ctx = Record; export declare const isRecord: (v: unknown) => v is Record; export declare const getPath: (ctx: unknown, path: string) => T | undefined; export declare const isTruthy: (v: unknown) => boolean; export declare const coerceLiteral: (s: string) => string | number | boolean | null | undefined; export declare const split: (raw: string, sep: string) => string[];