/** * Weekend Pass — Pro is free for everyone on weekends. * * A no-strings way to let people try Pro on their personal projects (most * folks don't work weekends, so it's great for side projects but not the * Mon–Fri day job). Evaluated in LOCAL time: active all of Saturday & Sunday. * * This is intentionally tiny and dependency-free so it can be shared by every * `useIsPro()` gate without pulling in extra packages. */ /** Whether the Weekend Pass is active right now (local Saturday or Sunday). */ export declare function isWeekendFreePro(now?: Date): boolean; /** * Reactive Weekend Pass flag — re-renders the moment the weekend window opens * or closes (re-checks every minute) so a long-running session flips at * midnight without a reload. */ export declare function useWeekendFreePro(): boolean; //# sourceMappingURL=weekendPro.d.ts.map