/** * AI Code Check — AI Code Compliance Checker * TypeScript declarations */ declare module 'aicodecheck' { /** * Package version */ export const version: string; /** * Package status */ export const status: string; /** * Check AI/ML code for compliance */ export function check(code: string): { passed: boolean | null; message: string; }; /** * Initialize the AICheck engine */ export function init(): { initialized: boolean; message: string; }; }