/**
 * Input Validation Example
 * Demonstrates how to use the comprehensive input validation system
 */
declare function basicValidationExample(): void;
declare function sqlInjectionExample(): void;
declare function pathTraversalExample(): void;
declare function rateLimitingExample(): Promise<void>;
declare function customRulesExample(): void;
declare function comprehensiveExample(): void;
declare function runExamples(): Promise<void>;
export { basicValidationExample, comprehensiveExample, customRulesExample, pathTraversalExample, rateLimitingExample, runExamples, sqlInjectionExample };
//# sourceMappingURL=example.d.ts.map