import 'dotenv/config';
declare const cookieSteps = "\nIn Chromium-based browsers like Chrome and Edge you can obtain your cookie by\nvisiting the site, logging in, opening developer tools (F12), and clicking\nApplication then expanding Cookies under the Storage section, locating the\nadventofcode.com cookie, and copying the session value.\n\nThen, add the following line to a .env file in the root of your project:\nAOC_SESSION_COOKIE=\"<your session cookie value>\"\n\nNOTE: Protect your session ID!  For example, add .env to your .gitignore file.\n";
declare const errExpiredSessionCookie: string;
declare function request(method: string, path: string, cookie: string, ca?: string, formData?: string): Promise<string>;
export { cookieSteps, errExpiredSessionCookie, request };
//# sourceMappingURL=httpsPromisfied.d.ts.map