/** * Utility function to get toggle value from cookies (for server-side compatibility) */ export declare const getToggleFromCookie: (toggleKey: string) => string | null; /** * Check if a toggle exists and is enabled (within the distribution/environment set by `ToggleProvider`) * The toggles from context already include cookie overrides merged by ToggleProvider * * @param toggleKeyToCheck The key of the toggle to check * @returns true if the given `toggleKeyToCheck` exists and is enabled for that distribution/environment */ export declare const useToggle: (toggleKeyToCheck: string) => boolean;