import yar from '@hapi/yar'; /** * Yar is used for temporary session data but not form submissions, e.g. UI helpers, session flags. */ declare const _default: { plugin: import("@hapi/hapi").Plugin; options: { maxCookieSize: number; cache: { cache: string; segment: string; expiresIn: number; }; /** * @todo storeBlank is current commented out as it's a minor efficiency gain but breaks the auth tests if enabled. * this only seems to affect the auth code, which we might remove anyway so it's temporarily disabled. */ cookieOptions: { password: string; isSecure: boolean; }; }; }; export default _default;