/** * **validateExports** * * Given an array of file imports, returns a hash of `valid` and `invalid` * files based on whether they represent a valid Lambda Serverless handler * definition. */ export declare function validateExports(fnDefns: string[]): Promise<{ valid: string[]; invalid: string[]; }>; //# sourceMappingURL=validateExports.d.ts.map