export { getPropVal }; export { setPropVal }; export { getPropKeys }; import '../../../assertEnvServer.js'; declare function getPropVal(obj: Record, prop: string): null | { value: unknown; }; declare function setPropVal(obj: Record, prop: string, val: unknown): void; declare function getPropKeys(prop: string): string[];