export interface VerifyResult { ok: boolean; errors: string[]; } export declare function verify(source: string): VerifyResult;