import { Config } from "./util/config"; import { IdTokenPayload } from "./util/jwt"; export declare const handler: import("aws-lambda").CloudFrontRequestHandler; /** * Check if the user is authorized to access the resource. */ export declare function isAuthorized(config: Config, idToken: IdTokenPayload): boolean;