export { applyShield }; import type { Telefunction } from '../types.js'; import type { ConfigResolved } from '../serverConfig.js'; declare function applyShield(runContext: { telefunction: Telefunction; telefunctionName: string; telefuncFilePath: string; telefunctionArgs: unknown[]; serverConfig: Pick; }): { isValidRequest: boolean; };